1. 12 Oct, 2021 1 commit
  2. 10 Oct, 2021 4 commits
  3. 09 Oct, 2021 1 commit
  4. 07 Oct, 2021 3 commits
  5. 04 Oct, 2021 3 commits
  6. 03 Oct, 2021 1 commit
  7. 19 Aug, 2021 1 commit
  8. 11 Jul, 2021 1 commit
  9. 17 Jun, 2021 1 commit
  10. 23 May, 2021 1 commit
  11. 02 May, 2021 3 commits
  12. 24 Apr, 2021 1 commit
  13. 11 Apr, 2021 1 commit
  14. 08 Apr, 2021 1 commit
  15. 02 Apr, 2021 2 commits
    • michael-grunder's avatar
      Change order independant push logic to not change behavior. · dfa33e60
      michael-grunder authored
      Since redisGetReplyFromReader is exposed in a header file, we probably
      shouldn't modify how it behaves in any way.  For this reason, handle the
      changed logic in an internal static helper method.
      dfa33e60
    • michael-grunder's avatar
      Handle the case where an invalidation is sent second. · 6204182a
      michael-grunder authored
      RESP3 invalidation messages always seemed to be sent before the response
      to a given command, but it appears this is not always the case:
      
      In Redis 6.2.0RC1 Redis sends the invalidation after the HSET in the
      following sequence:
      
      ```
      hget hash field
      $5
      value
      hset hash field value
      :0
      >2
      $10
      invalidate
      *1
      $4
      hash
      ```
      
      To account for this possibility just wrap redisGetReplyFromReader in a
      loop as it is called twice in redisGetReply.
      6204182a
  16. 26 Feb, 2021 15 commits