关于Python连接Redis

关于Python连接Redis

1、通过pip在Python中安装Redis的驱动程序。

在cmd命令中输入:python -m pip install redis

2、测试代码

#coding=utf-8

# 测试Redis

import redis

# 连接redis,加上decode_responses=True,写入的键值对中的value为str类型,不加这个参数写入的则为字节类型。

# 连接池方式

pool = redis.ConnectionPool(host=’localho

关于CTS项目的缓存Redis

1、安装。

yum install redis

2、查看redis版本、安装目录以及相关文件列表。

rpm -qa |grep redis

rpm -ql redis

redis-cli –version

3、启动。

systemctl start redis

4、开机自启动。

systemctl enable redis.service

5、配置文件。设置密码、IP访问(Redis开启远程登录连接,redis默认只能localhost访问)。

et