summaryrefslogtreecommitdiff
path: root/src/redis-cli.c
Commit message (Collapse)AuthorAgeFilesLines
* Show database number in cli prompt when non-zeroPieter Noordhuis2011-03-061-2/+13
|
* Store SELECTed database for reconnect (issue #468)Pieter Noordhuis2011-03-061-3/+5
|
* Minor memory leak in redis-cli (issue #464)Pieter Noordhuis2011-03-061-1/+5
|
* Fix compiler warnings on SolarisPieter Noordhuis2010-12-231-1/+3
|
* Specify multi-bulk delimiter via optionsPieter Noordhuis2010-12-151-0/+5
|
* Improved raw output modePieter Noordhuis2010-12-151-29/+65
| | | | | Raw output mode is selected by default when STDOUT is not a tty. For ttys, raw output can be forced using the option "--raw".
* Make redis-cli help a little betterPieter Noordhuis2010-12-151-19/+31
|
* Show redis-cli version with repository information if presentPieter Noordhuis2010-12-151-1/+18
|
* added support for ctrl-l and clear command into redis-cli. To clear the ↵antirez2010-12-011-0/+2
| | | | screen is a good idea from time to time :). Also linenoise updated to the current version to support this new feature.
* minor merge conflicts merging cli-help branch fixed2.2-alpha6antirez2010-11-301-18/+150
|\
| * Refactor and support help for command names with spacesPieter Noordhuis2010-11-291-55/+69
| |
| * Use linenoise completion API from redis-cliPieter Noordhuis2010-11-291-35/+108
| |
| * Refactor help-related code into redis-cli.cPieter Noordhuis2010-11-281-1/+60
| |
| * Merge remote branch 'visionmedia/cli-help' into cli-helpPieter Noordhuis2010-11-261-17/+2
| |\
| | * Added redis-cli interactive help supportTj Holowaychuk2010-11-161-17/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updated via commands.json in redis-doc repo. Currently use `make src/help.h` to re-generate. The following are valid from the REPL: help help [command] help [group] help groups ex: help sort help hash
* | | quick and dirty fix for hiredis bug creating problem with the new redis-cli ↵antirez2010-11-291-1/+1
| | | | | | | | | | | | connect commmand. Also change prompt when redis-cli is not connected
* | | new redis-cli command connectantirez2010-11-291-6/+14
|/ /
* | now redis-cli is able to show the Git SHA1 in the version outputantirez2010-11-081-1/+2
| |
* | make sure to flush stdout every line read in monitor mode, to play well with ↵antirez2010-11-081-0/+1
| | | | | | | | redirection to file
* | Put duration in parenthesisPieter Noordhuis2010-11-031-2/+3
| |
* | Add proper numbering for multi bulk replies in redis-cliPieter Noordhuis2010-11-031-9/+26
| |
* | Use hiredis from redis-cliPieter Noordhuis2010-11-031-222/+150
| |
* | Merge remote branch 'pietern/unixsocket'antirez2010-11-021-3/+16
|\ \
| * \ Merge master with resolved conflict in src/redis-cli.cPieter Noordhuis2010-10-131-115/+123
| |\ \
| * | | Add support for domain sockets to redis-cliPieter Noordhuis2010-08-011-4/+21
| | | |
* | | | redis-cli in interactive mode now prints the time elapsed of the operation ↵antirez2010-11-021-25/+52
| |_|/ |/| | | | | | | | performed took more than half a second.
* | | Removed unused command flagsPieter Noordhuis2010-10-171-4/+0
| |/ |/|
* | minor typo fixed, reported by Thomas Bassettoantirez2010-10-071-1/+1
| |
* | redis-cli does no longer try to auto detect if it is used inside a pipe. To ↵2.2-alpha2antirez2010-09-091-6/+7
| | | | | | | | read last argument from stdandard input there is to use the -x option. This will make it playing better inside cron scripts and in general when stdin is hacked.
* | Now redis-cli replies to help showing some basic usage information (Issue 291)antirez2010-08-301-0/+20
| |
* | It is now possible to use authentication and DB selection options at the ↵antirez2010-08-301-0/+6
| | | | | | | | same time in redis-cli (Issue 298)
* | Fixed MONITOR mode and Issue 296antirez2010-08-301-2/+3
| |
* | Use fstat to detect if stdin was redirectedPieter Noordhuis2010-08-251-13/+24
| |
* | Add a newline to tty output after every replyPieter Noordhuis2010-08-251-7/+3
| |
* | Re-introduce the interactive field so we can reconnect in interactive modePieter Noordhuis2010-08-251-0/+3
| |
* | Merge master and move argument splitting patch to sds.cPieter Noordhuis2010-08-251-89/+38
|\ \
| * | redis-cli now supports automatically reconnection in interactive modeantirez2010-08-241-9/+34
| | |
| * | Issue 179 fixed, now redis-cli is able to parse correctly multi bulk replies ↵antirez2010-08-241-2/+3
| | | | | | | | | | | | with elements that are errors
| * | redis cli argument splitting is general and is now moved into the sds.c libantirez2010-08-051-67/+3
| |/
* | Deprecate starting interactive mode using the -i flagPieter Noordhuis2010-08-041-7/+6
| |
* | Set tty before going into interactive mode to get non-pretty output whenPieter Noordhuis2010-08-041-2/+1
| | | | | | | | the commands are read from stdin.
* | Change output format for non-tty redis-cli executionPieter Noordhuis2010-08-041-7/+12
| |
* | Let the output mode depend on having a tty or notPieter Noordhuis2010-08-041-1/+4
| |
* | Tests for redis-cli in non-interactive modePieter Noordhuis2010-08-041-2/+3
| | | | | | | | | | Minor change in redis-cli output for the (multi-)bulk response but this will be fixed in the next commit.
* | Add tests for quotation in an interactive redis-cli sessionPieter Noordhuis2010-08-041-3/+18
| | | | | | | | | | Patched redis-cli to abort on unexpected quotation. This caused redis-cli to get into an infinite, memory-consuming loop.
* | Tests for the interactive mode of redis-cliPieter Noordhuis2010-08-041-3/+6
|/ | | | | Changed redis-cli to output the raw response for a bulk reply when it is run in interactive mode instead of checking isatty.
* redis-cli history saved across sessionsantirez2010-07-071-0/+9
|
* redis-cli is now able to report version information using -vantirez2010-07-061-1/+5
|
* redis.c split into many different C files.antirez2010-07-011-0/+493
networking related stuff moved into networking.c moved more code more work on layout of source code SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;) cleanly compiling again after the first split, now splitting it in more C files moving more things around... work in progress split replication code splitting more Sets split Hash split replication split even more splitting more splitting minor change