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的主要内容,如果未能解决你的问题,请参考以下文章