1. 04 Apr, 2013 1 commit
  2. 03 Apr, 2013 1 commit
  3. 02 Apr, 2013 1 commit
    • antirez's avatar
      Throttle BGSAVE attempt on saving error. · ed2d9881
      antirez authored
      When a BGSAVE fails, Redis used to flood itself trying to BGSAVE at
      every next cron call, that is either 10 or 100 times per second
      depending on configuration and server version.
      
      This commit does not allow a new automatic BGSAVE attempt to be
      performed before a few seconds delay (currently 5).
      
      This avoids both the auto-flood problem and filling the disk with
      logs at a serious rate.
      
      The five seconds limit, considering a log entry of 200 bytes, will use
      less than 4 MB of disk space per day that is reasonable, the sysadmin
      should notice before of catastrofic events especially since by default
      Redis will stop serving write queries after the first failed BGSAVE.
      
      This fixes issue #849
      ed2d9881
  4. 29 Mar, 2013 2 commits
  5. 28 Mar, 2013 7 commits
  6. 27 Mar, 2013 8 commits
  7. 26 Mar, 2013 1 commit
  8. 25 Mar, 2013 3 commits
    • NanXiao's avatar
      Update config.c · ef1cf15c
      NanXiao authored
      Fix bug in configGetCommand function: get correct masterauth value.
      ef1cf15c
    • antirez's avatar
      Test: obuf-limits test false positive removed. · dee8d842
      antirez authored
      Fixes #621.
      dee8d842
    • antirez's avatar
      redis-cli --stat, stolen from redis-tools. · 5576a289
      antirez authored
      Redis-tools is a connection of tools no longer mantained that was
      intented as a way to economically make sense of Redis in the pre-vmware
      sponsorship era. However there was a nice redis-stat utility, this
      commit imports one of the functionalities of this tool here in redis-cli
      as it seems to be pretty useful.
      
      Usage: redis-cli --stat
      
      The output is similar to vmstat in the format, but with Redis specific
      stuff of course.
      
      From the point of view of the monitored instance, only INFO is used in
      order to grab data.
      5576a289
  9. 13 Mar, 2013 6 commits
  10. 12 Mar, 2013 3 commits
  11. 11 Mar, 2013 7 commits