gpt4 book ai didi

python3 redis-py 如何自动解析 hgetall 结果?

转载 作者:IT王子 更新时间:2023-10-29 06:02:25 25 4
gpt4 key购买 nike

import redis

config=redis.Redis(host='localhost')
dic={'name':'tom','age':20,'subjects':['eng','cn']}
config.hmset('person',dic)

print(config.hgetall('person'))

将得到 {b'age': b'20', b'name': b'tom', b'subjects': b['eng', 'cn']"}。但我想取回 dic 对象。即:{'name':'tom','age':20,'subjects':['eng','cn']},怎么样?

最佳答案

decode_responses=True 添加到 Redis() 参数。

import redis

config=redis.Redis(host='localhost', decode_responses=True)
dic={'name':'tom','age':20,'subjects':['eng','cn']}
config.hmset('person',dic)

print(config.hgetall('person'))

关于python3 redis-py 如何自动解析 hgetall 结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35447655/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com