全局命令
查看所有key
keys *
时间复杂度 O(n),如果线上环境保存了大量的Key,不推荐使用此命令
键总数
dbsize
//获取Reids内置的键总数变量,时间复杂度O(1)
检查键是否存在
exists key
删除键
del key [key ...]
del a b c //删除key a, b, c
设置键过期
expire key seconds
expire hello 10 //设置hello在10秒后过期
ttl 命令会返回键的剩余过期时间,3种返回值
- 大于等于0的整数:键剩余的过期时间
- -1:键没设置过期时间
- -2:键不存在
键的数据结构类型
type key
- 如果不存在,则返回none
查看内部编码
object encode key
object encode hello
网友评论