python 连接redis

 

from redis import ConnectionPool, Redis
pool = ConnectionPool(host='localhost',password='aaa123', port=6379, db=0, decode_responses=True)
rdb = Redis(connection_pool=pool)

 

 


redis在实例化的时候给了一个参数叫decode_response,默认值是False,如果我们把这个值改为True,则避免了转码流程,直接对原数据进行操作
posted @ 2019-10-23 20:33  AngDH  阅读(143)  评论(0编辑  收藏  举报