1. 19 Jul, 2019 1 commit
  2. 18 Jul, 2019 4 commits
  3. 17 Jul, 2019 6 commits
  4. 12 Jul, 2019 1 commit
  5. 10 Jul, 2019 6 commits
  6. 08 Jul, 2019 4 commits
  7. 07 Jul, 2019 1 commit
  8. 05 Jul, 2019 1 commit
  9. 04 Jul, 2019 2 commits
  10. 03 Jul, 2019 3 commits
  11. 02 Jul, 2019 1 commit
  12. 30 Jun, 2019 2 commits
  13. 29 Jun, 2019 1 commit
  14. 13 Jun, 2019 2 commits
  15. 12 Jun, 2019 1 commit
  16. 10 Jun, 2019 1 commit
  17. 07 Jun, 2019 1 commit
  18. 05 Jun, 2019 1 commit
  19. 22 May, 2019 1 commit
    • Angus Pearson's avatar
      Implement `SCAN cursor [TYPE type]` modifier suggested in issue #6107. · bf963253
      Angus Pearson authored
      Add tests to check basic functionality of this optional keyword, and also tested with
      a module (redisgraph). Checked quickly with valgrind, no issues.
      
      Copies name the type name canonicalisation code from `typeCommand`, perhaps this would
      be better factored out to prevent the two diverging and both needing to be edited to
      add new `OBJ_*` types, but this is a little fiddly with C strings.
      
      The [redis-doc](https://github.com/antirez/redis-doc/blob/master/commands.json) repo
      will need to be updated with this new arg if accepted.
      
      A quirk to be aware of here is that the GEO commands are backed by zsets not their own
      type, so they're not distinguishable from other zsets.
      
      Additionally, for sparse types this has the same behaviour as `MATCH` in that it may
      return many empty results before giving something, even for large `COUNT`s.
      bf963253