1. 11 Jul, 2013 8 commits
  2. 02 Jul, 2013 2 commits
  3. 09 Jun, 2013 1 commit
  4. 04 Jun, 2013 1 commit
  5. 08 May, 2013 1 commit
  6. 07 May, 2013 1 commit
  7. 01 May, 2013 4 commits
  8. 29 Apr, 2013 1 commit
  9. 19 Apr, 2013 1 commit
    • Allen.Dou's avatar
      SetKeepAlive · 8d5bc445
      Allen.Dou authored
      Keep client alive even though no command was sent to server for a long time.
      8d5bc445
  10. 10 Apr, 2013 1 commit
  11. 15 Mar, 2013 2 commits
  12. 23 Feb, 2013 1 commit
  13. 26 Jan, 2013 5 commits
  14. 22 Jan, 2013 2 commits
  15. 06 Nov, 2012 1 commit
  16. 25 Oct, 2012 2 commits
  17. 28 Aug, 2012 3 commits
  18. 21 Aug, 2012 3 commits
    • antirez's avatar
      On stack buffer to read replies set to 16k (was 2k). · f7f022e4
      antirez authored
      It was verified experimentally that this value, on Linux kernels, provides
      better performances compared to the 2k value. However larger values
      apparently don't produce any noticeable effect on performances.
      f7f022e4
    • antirez's avatar
      Max depth of multi-bulk reply moved from 2 to 7. · 51ab89d8
      antirez authored
      Hiredis can handle multi bulk replies with a fixed (hardcoded) level of
      nesting. This should be changed in the future in order to avoid
      hardcoded limits. As a quick fix this commit moves the max nesting from 2
      to 7, so that there are no problems when processing replies from the SLOWLOG
      command, from Redis Sentinel, or generated by Redis Lua Scripts (that are
      allowed to generate replies with any level of nesting).
      51ab89d8
    • antirez's avatar
      Configurable reader max idle buffer size. · 7f095053
      antirez authored
      Hiredis used to free unused redisReader buffers bigger than 16k. Now
      this limit is configurable (see the documentation updated by this commit)
      in order to allow working with big payloads without incurring to speed
      penalty.
      7f095053