word_cloud_bot/connector.py
机器人总动员 722ecfef28 None
2021-05-05 15:35:04 +08:00

8 lines
186 B
Python

import redis
pool = redis.ConnectionPool(host='127.0.0.1', port=6379, encoding='utf8', decode_responses=True)
def get_connection():
return redis.StrictRedis(connection_pool=pool)