通用操作的意思就是与数据类型无关,都可以操作的方法
【1】delete
# 删除某个键对应的值 可用一次性删多个
res = conn.delete('color') # 删除color对应的数据
【2】exists
# 判断某个键是否存在 存在返回1 不存在返回0
res = conn.exists('girls')
【3】keys
# 返回所有键 或者返回某个键
res = conn.keys() # 所有键
res = conn.key('count') # count键
【4】expire
# 设置过期时间
res = conn.expire(name='count', time=5) # 设置count这个键5秒后过期
【5】rename
# 重新设置键名
# 如果原键名不存在会报错
# 改成功返回值是true
res = conn.rename(src='girl2', dst='girl3') # 把girl2改成girl3
【6】move
# 把某个键移到另一个数据库
res = conn.move(name='girl3', db=2) # 把girl3这个键移到第3个数据库
【7】randomkey
# 随机弹出一个键名
res = conn.randomkey()
标签:count,通用,键名,res,redis,某个,操作,girl3,conn
From: https://www.cnblogs.com/Hqqqq/p/18194653