1. 10 Mar, 2014 4 commits
  2. 07 Mar, 2014 3 commits
  3. 06 Mar, 2014 7 commits
  4. 05 Mar, 2014 1 commit
  5. 04 Mar, 2014 12 commits
  6. 03 Mar, 2014 10 commits
  7. 28 Feb, 2014 2 commits
    • Matt Stancliff's avatar
      Force INFO used_memory_peak to match peak memory · f1c9a203
      Matt Stancliff authored
      used_memory_peak only updates in serverCron every server.hz,
      but Redis can use more memory and a user can request memory
      INFO before used_memory_peak gets updated in the next
      cron run.
      
      This patch updates used_memory_peak to the current
      memory usage if the current memory usage is higher
      than the recorded used_memory_peak value.
      
      (And it only calls zmalloc_used_memory() once instead of
      twice as it was doing before.)
      f1c9a203
    • antirez's avatar
      Sentinel test: Makefile target added. · a89c8bb8
      antirez authored
      a89c8bb8
  8. 27 Feb, 2014 1 commit
    • michael-grunder's avatar
      Improved bigkeys with progress, pipelining and summary · 806788d0
      michael-grunder authored
      This commit reworks the redis-cli --bigkeys command to provide more
      information about our progress as well as output summary information
      when we're done.
      
       - We now show an approximate percentage completion as we go
       - Hiredis pipelining is used for TYPE and SIZE retreival
       - A summary of keyspace distribution and overall breakout at the end
      806788d0