1. 04 Sep, 2018 12 commits
  2. 29 Aug, 2018 21 commits
  3. 03 Aug, 2018 3 commits
  4. 02 Aug, 2018 4 commits
    • antirez's avatar
      Streams IDs parsing refactoring. · fbbcc6a6
      antirez authored
      Related to #5184.
      fbbcc6a6
    • antirez's avatar
      Test: new sorted set skiplist order consistency. · 70c4bcb7
      antirez authored
      This should be able to find new bugs and regressions about the new
      sorted set update function when ZADD is used to update an element
      already existing.
      
      The test is able to find the bug fixed at 2f282aee immediately.
      70c4bcb7
    • antirez's avatar
      Fix zslUpdateScore() edge case. · 63addc5c
      antirez authored
      When the element new score is the same of prev/next node, the
      lexicographical order kicks in, so we can safely update the node in
      place only when the new score is strictly between the adjacent nodes
      but never equal to one of them.
      
      Technically speaking we could do extra checks to make sure that even if the
      score is the same as one of the adjacent nodes, we can still update on
      place, but this rarely happens, so probably not a good deal to make it
      more complex.
      
      Related to #5179.
      63addc5c
    • antirez's avatar
      More commenting of zslUpdateScore(). · 724740cc
      antirez authored
      724740cc