Redis-CLI:访问Redis的客户端
在命令行下输入:redis-cli --help 得到帮助文件如下:
redis-cli3.0.501
Usage:redis-cli [OPTIONS] [cmd [arg [arg ...]]]
-h
-p
-s
-a
-r
-i
-n
-x Read last argumentfrom STDIN.
-d
-c Enable cluster mode(follow -ASK and -MOVED redirections).
--raw Use raw formatting forreplies (default when STDOUT is not a tty).
--no-raw Force formatted output even whenSTDOUT is not a tty.
--csv Output in CSV format.
--stat Print rolling stats aboutserver: mem, clients, ...
--latency Enter a special mode continuouslysampling latency.
--latency-history Like --latency but tracking latency changes over time. Default time interval is 15 sec. Change it using -i.
--latency-dist Shows latency as a spectrum, requires xterm 256colors. Default time interval is 1 sec. Change it using -i.
--lru-test
--slave Simulate a slave showingcommands received from the master.
--rdb
--pipe Transfer raw Redis protocolfrom stdin to server.
--pipe-timeout
--bigkeys Sample Redis keys looking for bigkeys.
--scan List all keys using the SCANcommand.
--pattern
--intrinsic-latency
--eval
--help Output this help and exit.
--version Output version and exit.
Examples:
cat /etc/passwd | redis-cli -x set mypasswd
redis-cli get mypasswd
redis-cli -r 100 lpush mylist x
redis-cli -r 100 -i 1 info | grep used_memory_human:
redis-cli --eval myscript.lua key1 key2 , arg1 arg2 arg3
redis-cli --scan --pattern '*:12345*'
(Note: when using --eval the comma separates KEYS[] from ARGV[] items)
When nocommand is given, redis-cli starts in interactive mode.
Type"help" in interactive mode for information on available commands.