1. 28 Nov, 2015 1 commit
    • antirez's avatar
      fix sprintf and snprintf format string · 96628cc4
      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.
      96628cc4
  2. 17 Nov, 2015 17 commits
  3. 30 Sep, 2015 1 commit
    • antirez's avatar
      redis-cli pipe mode: don't stay in the write loop forever. · d1b6a17d
      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.
      d1b6a17d
  4. 07 Sep, 2015 1 commit
  5. 27 Jul, 2015 1 commit
  6. 14 Jul, 2015 2 commits
  7. 13 Feb, 2015 2 commits
    • antirez's avatar
      f638f045
    • antirez's avatar
      redis-cli --latency-dist, hopefully better palette. · 3101d2bf
      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.
      3101d2bf
  8. 11 Feb, 2015 1 commit
  9. 09 Feb, 2015 1 commit
  10. 08 Feb, 2015 2 commits
    • antirez's avatar
      redis-cli: interactive reconnection for latency modes. · ca23b2a6
      antirez authored
      --stat mode already used to reconnect automatically if the server is no
      longer available. This is useful since this is an interactive mode used
      for debugging, however the same applies to --latency and --latency-dist
      modes, so now both use the reconnecting command execution as well.
      
      The reconnection code was modified to use basic VT100 escape sequences
      in order to play better with different kinds of output on the screen
      when the reconnection happens, and to hide the reconnection attempt
      output when finally the reconnection happens.
      ca23b2a6
    • antirez's avatar
      redis-cli --latecy-dist reverted to gray scale. · cfe21852
      antirez authored
      So far not able to find a color palette within the 256 colors which is
      not confusing. However I believe it is a possible task, so will try
      better later.
      cfe21852
  11. 07 Feb, 2015 4 commits
  12. 25 Jan, 2015 1 commit
    • mattcollier's avatar
      Update redis-cli.c · 6ec5f1f7
      mattcollier authored
      Code was adding '\n'  (line 521) to the end of NIL values exlusively making csv output inconsistent.  Removed '\n'
      6ec5f1f7
  13. 23 Dec, 2014 1 commit
    • Matt Stancliff's avatar
      Add DEBUG JEMALLOC INFO · 27937c28
      Matt Stancliff authored
      Uses jemalloc function malloc_stats_print() to return
      stats about what jemalloc has allocated internally.
      27937c28
  14. 11 Dec, 2014 2 commits
  15. 08 Dec, 2014 1 commit
  16. 25 Nov, 2014 1 commit
  17. 11 Nov, 2014 1 commit