1. 08 Oct, 2018 2 commits
    • antirez's avatar
      Transactions: move the QUEUED logic inside call(). (Work in progress) · 71c37605
      antirez authored
      As a side effect this makes things like #5201 fixed automatically.
      The problem with handling it in ProcessQueryBuffer() or similar is that
      a client that is handled just via the call() interface will misbehave,
      and call()-ing MULTI and later some command will see just the other
      command executed like if the client was not in a transaction.
      
      For now this has worked well enough but probably it makes more sense if
      we can handle that case on call().
      
      WARNING: this comment is not enough and will introduce bugs. It's a WIP.
      71c37605
    • antirez's avatar
      Refactoring of XADD / XTRIM MAXLEN rewriting. · 3e78344d
      antirez authored
      See #5141.
      3e78344d
  2. 07 Oct, 2018 1 commit
  3. 05 Oct, 2018 2 commits
  4. 04 Oct, 2018 1 commit
  5. 02 Oct, 2018 4 commits
  6. 01 Oct, 2018 2 commits
  7. 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
  8. 28 Sep, 2018 2 commits
  9. 27 Sep, 2018 5 commits
  10. 26 Sep, 2018 4 commits
  11. 25 Sep, 2018 5 commits
  12. 24 Sep, 2018 4 commits
  13. 21 Sep, 2018 1 commit
  14. 20 Sep, 2018 1 commit
  15. 19 Sep, 2018 3 commits