码迷,mamicode.com
首页 > 其他好文 > 详细

Redis命令行查询缓存值

时间:2021-06-15 18:44:46      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:value   ted   pass   查询缓存   ima   命令行   png   color   password   

 

一、连接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命令行查询缓存值

标签:value   ted   pass   查询缓存   ima   命令行   png   color   password   

原文地址:https://www.cnblogs.com/xiaochengzi/p/14885462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!