redis 终端常用操作
2018-01-15 本文已影响0人
静心_18e1
连接远程 redis
//连接远程 redis
redis-cli -h 192.168.1.103 -p 6379
//启动集群模式需要增加 -c 参数
redis-cli -c -h 192.168.1.103 -p 6379
选择库0
select 0
查看索引中所有key
keys *
增加key和value
set test "test"
根据key获取value值
get test
删除指定key
del test