码迷,mamicode.com
首页 > 编程语言 > 详细

python 安装 redis

时间:2019-08-22 19:23:54      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:ons   max   http   pre   pass   get   install   connect   red   

 

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

标签:ons   max   http   pre   pass   get   install   connect   red   

原文地址:https://www.cnblogs.com/ericblog1992/p/11395923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!