1. 12 Jun, 2018 6 commits
  2. 10 Jun, 2018 3 commits
  3. 07 Jun, 2018 3 commits
  4. 06 Jun, 2018 1 commit
  5. 05 Jun, 2018 1 commit
    • antirez's avatar
      Remove XINFO <key> special form. · 9e25f3e1
      antirez authored
      As observed by Michael Grunder this usage while practical is
      inconsistent because for instance it does not work against a key called
      HELP. Removed.
      9e25f3e1
  6. 04 Jun, 2018 2 commits
    • antirez's avatar
      XGROUP SETID implemented + consumer groups core fixes. · 36b392a0
      antirez authored
      Now that we have SETID, the inetrnals of consumer groups should be able
      to handle the case of the same message delivered multiple times just
      as a side effect of calling XREADGROUP. Normally this should never
      happen but if the admin manually "XGROUP SETID mykey mygroup 0",
      messages will get re-delivered to clients waiting for the ">" special
      ID. The consumer groups internals were not able to handle the case of a
      message re-delivered in this circumstances that was already assigned to
      another owner.
      36b392a0
    • antirez's avatar
      XGROUP DESTROY implemented. · 7c6f1be5
      antirez authored
      7c6f1be5
  7. 03 Jun, 2018 1 commit
  8. 25 May, 2018 5 commits
  9. 19 Apr, 2018 2 commits
  10. 18 Apr, 2018 1 commit
  11. 17 Apr, 2018 2 commits
  12. 10 Apr, 2018 3 commits
  13. 21 Mar, 2018 1 commit
  14. 20 Mar, 2018 5 commits
  15. 19 Mar, 2018 1 commit
  16. 15 Mar, 2018 3 commits
    • antirez's avatar
      CG: XINFO STREAM. · 66143616
      antirez authored
      66143616
    • antirez's avatar
      CG: XINFO GROUPS + output format changes. · d7d8cd0b
      antirez authored
      XINFO is mainly an observability command that will be used more by
      humans than computers, and even when used by computers it will be a very
      low traffic command. For this reason the format was changed in order to
      have field names. They'll consume some bandwidth and CPU cycles, but in
      this context this is much better than having to understand what the
      numbers in the output array are.
      d7d8cd0b
    • antirez's avatar
      CG: XINFO CONSUMERS implemented. · 0cf6b1e3
      antirez authored
      0cf6b1e3