Redis
Posted treelight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis相关的知识,希望对你有一定的参考价值。
准备阶段
一、在Centos上安装Redis。yum install redis
二、在python中pip install redis
三、在centos命令行中常用的命令
1、set <key> <value>:设key的值为value
2、keys *:获取所有的键
3、get <key>:获取key的值
4、set <key> <value> ex <seconds>:让key的值保留seconds秒
连接
一、直接连接
1、建立连接redis.Redis(host)
2、设置一个键对值,r.set(<key>,<value)
3、获取一键的值.r.get(<key>)
import redis connection = redis.Redis(host=‘192.168.0.50‘) connection.set(‘foo‘, ‘bar‘) print(connection.get(‘foo‘))
以上是关于Redis的主要内容,如果未能解决你的问题,请参考以下文章