1. 31 Oct, 2016 1 commit
  2. 05 Jul, 2016 2 commits
  3. 16 Jun, 2016 2 commits
    • antirez's avatar
      redis-cli: really connect to the right server. · 58f1d446
      antirez authored
      I recently introduced populating the autocomplete help array with the
      COMMAND command if available. However this was performed before parsing
      the arguments, defaulting to instance 6379. After the connection is
      performed it remains stable.
      
      The effect is that if there is an instance running on port 6339,
      whatever port you specify is ignored and 6379 is connected to instead.
      The right port will be selected only after a reconnection.
      
      Close #3314.
      58f1d446
    • Jan-Erik Rediger's avatar
      Remove debug printing · b6007b32
      Jan-Erik Rediger authored
      b6007b32
  4. 08 May, 2016 1 commit
    • antirez's avatar
      redis-cli: integrate help.h with COMMAND output. · 029dc0d9
      antirez authored
      Use the COMMAND output to fill with partial information the built-in
      help. This makes redis-cli able to at least complete commands that are
      exported by the Redis server it is connected to, but were not available
      in the help.h file when the redis-cli binary was compiled.
      029dc0d9
  5. 05 May, 2016 4 commits
  6. 04 May, 2016 2 commits
  7. 02 May, 2016 2 commits
  8. 08 Jan, 2016 1 commit
    • antirez's avatar
      Lua debugger: support direct calls to SCRIPT DEBUG in redis-cli. · 6cbd5596
      antirez authored
      Previously it was possible to activate a debugging session only using
      the --ldb option in redis-cli. Now calling SCRIPT DEBUG can also
      activate the debugging mode without putting the redis-cli in a
      desynchronized state.
      
      Related to #2952.
      6cbd5596
  9. 28 Nov, 2015 1 commit
    • antirez's avatar
      fix sprintf and snprintf format string · 4916d205
      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.
      4916d205
  10. 19 Nov, 2015 17 commits
  11. 30 Sep, 2015 1 commit
    • antirez's avatar
      redis-cli pipe mode: don't stay in the write loop forever. · 0f81f83e
      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.
      0f81f83e
  12. 07 Sep, 2015 1 commit
  13. 27 Jul, 2015 1 commit
  14. 14 Jul, 2015 2 commits
  15. 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