标签:style redis string get port store ring 解决 取值
原因在于在python中从Redis取出的Sting都变成bytes格式
解决一
# 加上decode_responses=True即可解决
redis_store = redis.StrictRedis(host=‘127.0.0.1‘, port=6379, decode_responses=True)
解决二
取值时后面加上decode()
redis_store.get("name:%s"%name).decode()
标签:style redis string get port store ring 解决 取值
原文地址:https://www.cnblogs.com/xing03/p/12546808.html