1. 28 Aug, 2012 3 commits
  2. 21 Aug, 2012 4 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
    • antirez's avatar
      Add ARCH to Makefile CFLAGS / LDFLAGS. · 7f346477
      antirez authored
      This makes builiding with an optional 32 bit target simpler. For
      instance Redis (that contains an embedded copy of hiredis) when compiled
      with "make 32bit" uses to pass an ARCH parameter to force an hiredis
      32 bit build.
      7f346477
  3. 01 Aug, 2012 1 commit
  4. 11 Jul, 2012 3 commits
  5. 18 Apr, 2012 1 commit
    • Mark Ellzey's avatar
      Use poll() instead of select() inside redisContextWaitReady() · f8debbfd
      Mark Ellzey authored
      The current select() is limiting in instances where the fd num is > FD_SETSIZE.
      Since redisContextWaitReady() only processes a single fd, select would still
      fail.
      
      For compatibility reasons I have converted select() over to poll(), eliminating
      this problem.
      f8debbfd
  6. 07 Apr, 2012 1 commit
  7. 06 Feb, 2012 1 commit
  8. 20 Dec, 2011 3 commits
  9. 02 Dec, 2011 2 commits
  10. 28 Nov, 2011 2 commits
  11. 20 Jul, 2011 1 commit
  12. 11 Jul, 2011 2 commits
  13. 10 Jul, 2011 4 commits
  14. 09 Jul, 2011 3 commits
  15. 04 Jul, 2011 1 commit
  16. 27 Jun, 2011 7 commits
  17. 19 Jun, 2011 1 commit