1.远程连接redis服务器
# 用法:redis-cli [OPTIONS] [cmd [arg [arg ...]]] # -h <主机ip>,默认是127.0.0.1 # -p <端口>,默认是6379 # -a <密码>,如果redis加锁,需要传递密码 # --help,显示帮助信息 redis-cli -h 192.168.1.103 -p 6379
2.根据key值获取对应的value值
# 用法:get [key] get testkey
3.根据key值获取对应的value值的类型
# 用法:type [key] type testkey
4.key值对应的value值的自增操作
# 用法:incr [key] incr testkey
参考资料:
1.http://blog.csdn.net/chen88358323/article/details/47318303
2.http://www.runoob.com/redis/redis-tutorial.html