1. 13 Jun, 2018 4 commits
  2. 12 Jun, 2018 9 commits
  3. 06 Jun, 2018 1 commit
  4. 05 Jun, 2018 1 commit
    • antirez's avatar
      Remove XINFO <key> special form. · 63ed0f75
      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.
      63ed0f75
  5. 04 Jun, 2018 2 commits
    • antirez's avatar
      XGROUP SETID implemented + consumer groups core fixes. · 8b9b02ad
      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.
      8b9b02ad
    • antirez's avatar
      XGROUP DESTROY implemented. · 525a7b39
      antirez authored
      525a7b39
  6. 25 May, 2018 5 commits
  7. 19 Apr, 2018 2 commits
  8. 18 Apr, 2018 1 commit
  9. 17 Apr, 2018 2 commits
  10. 10 Apr, 2018 3 commits
  11. 21 Mar, 2018 1 commit
  12. 20 Mar, 2018 5 commits
  13. 19 Mar, 2018 1 commit
  14. 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