Redis-python中操作redis

python中操作Redis

redis模块下载

pip install redis

from redis import Redis

conn = Redis(host='127.0.0.1',port=6379)
self.conn.lpush('key',value)

注意点:redis如何存入字典对象报错时,可以就换一个redis模块版本

pip install -U redis==2.10.6

posted @ 2020-06-08 21:14  Hedger_Lee  阅读(118)  评论(0编辑  收藏  举报