连接远程 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
//连接远程 redis
redis-cli -h 192.168.1.103 -p 6379
//启动集群模式需要增加 -c 参数
redis-cli -c -h 192.168.1.103 -p 6379
select 0
keys *
set test "test"
get test
del test
本文标题:redis 终端常用操作
本文链接:https://www.haomeiwen.com/subject/jnfdoxtx.html
网友评论