- 30 Jun, 2017 1 commit
-
-
antirez authored
This feature was proposed by @rosmo in PR #2643 and later redesigned in order to fit better with the other options for non-interactive modes of redis-cli. The idea is basically to allow to collect latency information in scripts, cron jobs or whateever, just running for a limited time and then producing a single output.
-
- 15 May, 2017 1 commit
-
-
antirez authored
Close #3993.
-
- 08 Jan, 2017 1 commit
-
-
Jan-Erik Rediger authored
-
- 12 Dec, 2016 1 commit
-
-
Yossi Gottlieb authored
This happens if the server (mysteriously) returns an unexpected response to the COMMAND command.
-
- 03 Dec, 2016 1 commit
-
-
cbgbt authored
-
- 02 Nov, 2016 1 commit
-
-
antirez authored
Thanks to @qiaodaimadelaowang for signaling the issue. Close #3585.
-
- 28 Oct, 2016 1 commit
-
-
jybaek authored
-
- 19 Sep, 2016 1 commit
-
-
antirez authored
It was changed in Redis but not in redis-cli. Thanks to @oranagra for signaling.
-
- 16 Sep, 2016 2 commits
- 18 Jul, 2016 2 commits
- 05 Jul, 2016 1 commit
-
-
antirez authored
In issues #3361 / #3365 a problem was reported / fixed with redis-cli not updating correctly the current DB on error after SELECT. In theory this bug was fixed in 0042fb0e, but actually the commit only fixed the prompt updating, not the fact the state was set in a wrong way. This commit removes the check in the prompt update, now that hopefully it is the state that is correct, there is no longer need for this check.
-
- 01 Jul, 2016 1 commit
-
-
sskorgal authored
-
- 16 Jun, 2016 1 commit
-
-
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.
-
- 21 May, 2016 1 commit
-
-
Jan-Erik Rediger authored
-
- 07 May, 2016 1 commit
-
-
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.
-
- 05 May, 2016 2 commits
- 04 May, 2016 1 commit
-
-
antirez authored
-
- 25 Apr, 2016 1 commit
-
-
Oran Agra authored
-
- 13 Apr, 2016 2 commits
- 09 Feb, 2016 1 commit
-
-
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.
-
- 13 Jan, 2016 1 commit
-
-
Jan-Erik Rediger authored
1 microsecond = 1000 nanoseconds 1e3 = 1000 10e3 = 10000
-
- 08 Jan, 2016 1 commit
-
-
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.
-
- 28 Nov, 2015 1 commit
-
-
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.
-
- 17 Nov, 2015 13 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
Let the user control the replies truncation.
-
antirez authored
-
antirez authored
Otherwise the result is a messed CLI without prompt. Thanks to Itamar Haber for reporting this issue.
-
antirez authored
Redis-cli handles the debugger "eval" command in a special way since sdssplitargs() would not be ok: we need to send the Redis debugger the whole Lua script without any parsing. However in order to later free the argument vector inside redis-cli using just sdsfreesplitres(), we need to allocate the array of SDS pointers using the same allocator SDS is using, that may differ to what Redis is using. So now a newer version of SDS exports sds_malloc() and other allocator functions to give access, to the program it is linked to, the allocator used internally by SDS.
-
antirez authored
-
antirez authored
When redis-cli will support the synchronous mode, this will not be printed.
-
antirez authored
When the debugger exits now it produces an <endsession> tag that informs redis-cli (or other debugging clients) that the session terminated. This way the client knows there is yet another reply to read (the one of the EVAL script itself), and can switch to non-debugging mode ASAP.
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-