1. 07 Oct, 2018 1 commit
  2. 05 Oct, 2018 2 commits
  3. 04 Oct, 2018 1 commit
  4. 02 Oct, 2018 7 commits
  5. 01 Oct, 2018 6 commits
  6. 30 Sep, 2018 3 commits
    • Bruce Merry's avatar
      Fix incorrect memory usage accounting in zrealloc · 8fd1031b
      Bruce Merry authored
      When HAVE_MALLOC_SIZE is false, each call to zrealloc causes used_memory
      to increase by PREFIX_SIZE more than it should, due to mis-matched
      accounting between the original zmalloc (which includes PREFIX size in
      its increment) and zrealloc (which misses it from its decrement).
      
      I've also supplied a command-line test to easily demonstrate the
      problem. It's not wired into the test framework, because I don't know
      TCL so I'm not sure how to automate it.
      8fd1031b
    • Oran Agra's avatar
      fix #5024 - commandstats for multi-exec were logged as EXEC. · f03aed3c
      Oran Agra authored
      this was broken a while back by ba9154d7
      the purpose of which was to fix commandstats for GEOADD
      f03aed3c
    • Bruce Merry's avatar
      Fix invalid use of sdsZmallocSize on an embedded string · ecc48369
      Bruce Merry authored
      sdsZmallocSize assumes a dynamically allocated SDS. When given a string
      object created by createEmbeddedStringObject, it calls zmalloc_size on a
      pointer that isn't the one returned by zmalloc
      ecc48369
  7. 28 Sep, 2018 2 commits
  8. 27 Sep, 2018 5 commits
  9. 26 Sep, 2018 5 commits
  10. 25 Sep, 2018 7 commits
  11. 24 Sep, 2018 1 commit
    • antirez's avatar
      Modules: change RedisModuleString API to allow NULL context. · c7e0c410
      antirez authored
      The burden of having to always create RedisModuleString objects within a
      module context was too much, especially now that we have threaded
      operations and modules are doing more interesting things. The context in
      the string API is currently only used for automatic memory managemnet,
      so now the API was modified so that the user can opt-out this feature by
      passing a NULL context.
      c7e0c410