1. 18 Nov, 2021 2 commits
  2. 21 Oct, 2021 1 commit
    • Bjorn Svensson's avatar
      Correcting the build target `coverage` for enabled SSL (#1009) · c98c6994
      Bjorn Svensson authored
      * Exclude includes from /usr in coverage reporting
      
      * Correct build target `coverage` for enabled ssl
      
      `USE_SSL=1 make coverage` will now build the test binary with the
      forwarded define HIREDIS_TEST_SSL. This avoids inconsistency between
      built test binary and the testrunner `test.sh`.
      This enables test coverage measurements for SSL too.
      c98c6994
  3. 20 Oct, 2021 1 commit
  4. 14 Oct, 2021 1 commit
  5. 12 Oct, 2021 3 commits
  6. 10 Oct, 2021 4 commits
  7. 09 Oct, 2021 1 commit
  8. 07 Oct, 2021 3 commits
  9. 04 Oct, 2021 3 commits
  10. 03 Oct, 2021 1 commit
  11. 19 Aug, 2021 1 commit
  12. 11 Jul, 2021 1 commit
  13. 17 Jun, 2021 1 commit
  14. 23 May, 2021 1 commit
  15. 02 May, 2021 3 commits
  16. 24 Apr, 2021 1 commit
  17. 11 Apr, 2021 1 commit
  18. 08 Apr, 2021 1 commit
  19. 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
  20. 26 Feb, 2021 8 commits