1. 05 May, 2016 1 commit
    • David Cavar's avatar
      Reverse redirect address parse · 1d8078b7
      David Cavar authored
      Fix issue in case the redirect address is in ipv6 format. Parse from behind to extract last part of the response which represents actual port.
      1d8078b7
  2. 18 Dec, 2015 1 commit
    • antirez's avatar
      fix sprintf and snprintf format string · 0bc19938
      antirez authored
      There are some cases of printing unsigned integer with %d conversion
      specificator and vice versa (signed integer with %u specificator).
      
      Patch by Sergey Polovko. Backported to Redis from Disque.
      0bc19938
  3. 30 Sep, 2015 1 commit
    • antirez's avatar
      redis-cli pipe mode: don't stay in the write loop forever. · 30978004
      antirez authored
      The code was broken and resulted in redis-cli --pipe to, most of the
      times, writing everything received in the standard input to the Redis
      connection socket without ever reading back the replies, until all the
      content to write was written.
      
      This means that Redis had to accumulate all the output in the output
      buffers of the client, consuming a lot of memory.
      
      Fixed thanks to the original report of anomalies in the behavior
      provided by Twitter user @fsaintjacques.
      30978004
  4. 07 Sep, 2015 1 commit
  5. 18 Mar, 2015 2 commits
    • antirez's avatar
      e772c8e7
    • antirez's avatar
      redis-cli --latency-dist, hopefully better palette. · 99764d27
      antirez authored
      Less grays: more readable palette since usually we have a non linear
      distribution of percentages and very near gray tones are hard to take
      apart. Final part of the palette is gradient from yellow to red. The red
      part is hardly reached because of usual distribution of latencies, but
      shows up mainly when latencies are very high because of the logarithmic
      scale, this is coherent to what people expect: red = bad.
      99764d27
  6. 11 Feb, 2015 1 commit
  7. 10 Feb, 2015 8 commits
  8. 02 Feb, 2015 2 commits
    • mattcollier's avatar
      Update redis-cli.c · 1aed310c
      mattcollier authored
      Code was adding '\n'  (line 521) to the end of NIL values exlusively making csv output inconsistent.  Removed '\n'
      1aed310c
    • mattcollier's avatar
      Update redis-cli.c · 7db39b7f
      mattcollier authored
      Code was adding '\n'  (line 521) to the end of NIL values exlusively making csv output inconsistent.  Removed '\n'
      7db39b7f
  9. 11 Dec, 2014 2 commits
  10. 09 Dec, 2014 1 commit
  11. 25 Nov, 2014 1 commit
  12. 30 Oct, 2014 1 commit
  13. 29 Oct, 2014 1 commit
  14. 26 Aug, 2014 9 commits
  15. 18 Jul, 2014 2 commits
  16. 26 Jun, 2014 1 commit
  17. 21 Jun, 2014 2 commits
  18. 06 Jun, 2014 1 commit
  19. 13 Mar, 2014 1 commit
  20. 05 Mar, 2014 1 commit
    • michael-grunder's avatar
      Improved bigkeys with progress, pipelining and summary · 23addbb5
      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
      23addbb5