Redis中存入存储的编码方式不一致解决问题

时间:2023-12-25 20:07:07

  在利用redis缓存的时候,存入的数据与取出的数据编码方式不一致解决办法。

from redis import StrictRedis
#ecoding = 'utf-8',默认解码方式为bytes,True代表采用存入的解码方式。
rds = StrictRedis(host='127.0.0.1', port=6379, db=0,decode_responses=True)
#hash用法
rds.hset('input_value', 'factor_2017060311',result)
result = rds.hget('input_value', 'factor_2017060311')