Redis 命令

本地启动 >redis-cli

远程连接 >redis-cli -h hostname -p port -a password

检查是否成功连接 >PING

参考资料:

https://gnuhpc.gitbooks.io/redis-all-about/Intro/

http://www.runoob.com/redis/redis-commands.html


python redis交互(整理版)

https://www.cnblogs.com/progor/p/8567640.html


pipeline 读写redis

http://blog.51cto.com/leizhu/1825733

https://www.cnblogs.com/kangoroo/p/7647052.html

https://blog.csdn.net/heizistudio/article/details/80618824


Redis 过期时间

https://www.cnblogs.com/zhangchao-letv/p/6114030.html

EXPIRE:给Redis中的某个Key设置过期时间

EXPIRE

TTL & PTTL:查看Redis中某个Key的剩余过期时间

如果查询到结果则返回剩余时间,如果该Key不存在过期时间则返回 -1

TTL # 以秒为单位返回剩余过期时间

PTTL # 以毫秒为单位返回剩余过期时间

PERSIST:删除Redis中某个Key的过期时间

PERSIST



【 To Be Continue 】

你可能感兴趣的:(Redis 命令)