gpt4 book ai didi

Python Pickle 与 Stringify

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

目前我正在使用 str() 将我的字典字符串化,然后将其存储在 redis 中。当我想修改对象时,我从 redis 中获取它并使用 eval()。我看到也可以使用 pickle 模块来做同样的事情。哪个更有效或哪个更好?

obj = # very large and deeply nested dictionary
cache = redis.StrictRedis(host='localhost', port=6379, db=0)
cache.set('id', str(obj))
cache.get('id')

obj = # very large and deeply nested dictionary
cache = redis.StrictRedis(host='localhost', port=6379, db=0)
cache.set('id', pickle.dumps(obj))
pickle.loads(cache.get('id'))

最佳答案

因为你使用的是嵌套字典,并且只支持redis

Redis Hashes are maps between string fields and string values

那么最简单的方法就是使用json模块

import json

your_dict = {}
json.dumps(your_dict)

# and to load it
your_dict_in_str = '{}'
json.loads(your_dict_in_str)

并尽量避免使用eval

关于Python Pickle 与 Stringify,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48978121/

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