Redis
- keys xxx: 例如 keys my?
列出满足条件的key
- del key1 key2 ```
删除 key
- exists keyname
查看Key是否存在
- rename key keyrename
重命名key
- expire key 1000
1000秒 过期
- ttl key
查看剩余有效时间
- type key
查看key的类型
- seelect 1
查看第一号数据库
- move keyname 1
将当前数据库的key复制到1号数据库
- 事务机制
muti开启事务机制 exec 提交事务 discard 回滚
网友评论