标签:val sts style 类型 nbsp red time nil 判断
1--查找键,参数通配符查找 keys pattern # 查看所有键 keys * # 查看名称中包含a的键 keys ‘*a*‘ 2--判断键是否存在 如果存在返回1,不存在返回0 exists key1 3--查看键对应的value的类型 type key 4--删除键及对应的值 del key1 key2 ... 5--设置过期时间,以秒为单位 expire key seconds # 撤销过期时间 presist key 6--查看有效时间,以秒为单位 ttl key (time to live) # 以毫秒数查看时间 pttl key 7--序列化键值 -- dump key_name 如果key不存在,返回nil; 8--修改键名 rename key newkey # 仅在新的键名不存在时,设置键名; renamenx key newkey
标签:val sts style 类型 nbsp red time nil 判断
原文地址:http://www.cnblogs.com/pymkl/p/7966360.html