Redis命令行查询缓存值
Posted 小橙籽
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis命令行查询缓存值相关的知识,希望对你有一定的参考价值。
一、连接Redis服务器
redis-cli -h host -p port -a password
二、查询所有的keys
keys *
三、获取指定的key对应的值
1)查询key对应的value
type <key>
2)不同的type,查询的命令不一样
if value is of type string -> GET <key> if value is of type hash -> HGETALL <key> if value is of type lists -> lrange <key> <start> <end> if value is of type sets -> smembers <key> if value is of type sorted sets -> ZRANGEBYSCORE <key> <min> <max>
以上是关于Redis命令行查询缓存值的主要内容,如果未能解决你的问题,请参考以下文章
sql [SQL查询片段]用于在命令行或通过R和其他工具使用SQL的快速代码段#tags:sql,R,text processing,命令li