python 安装 redis

Posted ericblog1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 安装 redis相关的知识,希望对你有一定的参考价值。

 

https://pypi.org/project/redis/

pip install redis

import redis
pool = redis.ConnectionPool(
host = "localhost",
port = 6379,
password = ‘‘,
db = 0,
max_connections = 20
)

from redis_db import pool
import redis
import time

con = redis.Redis(
connection_pool = pool
)

con.set("country","英国")
con.set("city","伦敦")
# city = con.get("city").decode("utf-8")
con.expire("city",5)
time.sleep(6)
city = con.get("city").decode("utf-8")
print(city)

del con

以上是关于python 安装 redis的主要内容,如果未能解决你的问题,请参考以下文章

redis 基本操作-python 使用redis-手机验证接口-发送短信接口

python操redis

Python操作redis

python 的 redis 库,连接池怎么用

服务器环境配置

redis python scan_iter 给出不同的键