1. 16 Apr, 2014 34 commits
  2. 27 Mar, 2014 1 commit
  3. 25 Mar, 2014 5 commits
    • antirez's avatar
      Redis 2.8.8. · d2e59c27
      antirez authored
      d2e59c27
    • antirez's avatar
    • antirez's avatar
      adjustOpenFilesLimit() refactoring. · 3580bb48
      antirez authored
      In this commit:
      * Decrement steps are semantically differentiated from the reserved FDs.
        Previously both values were 32 but the meaning was different.
      * Make it clear that we save setrlimit errno.
      * Don't explicitly handle wrapping of 'f', but prevent it from
        happening.
      * Add comments to make the function flow more readable.
      
      This integrates PR #1630
      3580bb48
    • Matt Stancliff's avatar
      Fix potentially incorrect errno usage · c3510af1
      Matt Stancliff authored
      errno may be reset by the previous call to redisLog, so capture
      the original value for proper error reporting.
      c3510af1
    • Matt Stancliff's avatar
      Add REDIS_MIN_RESERVED_FDS define for open fds · 771f8ad0
      Matt Stancliff authored
      Also update the original REDIS_EVENTLOOP_FDSET_INCR to
      include REDIS_MIN_RESERVED_FDS. REDIS_EVENTLOOP_FDSET_INCR
      exists to make sure more than (maxclients+RESERVED) entries
      are allocated, but we can only guarantee that if we include
      the current value of REDIS_MIN_RESERVED_FDS as a minimum
      for the INCR size.
      771f8ad0