如何在 Django 中缓存自定义模型列表?
我有一个需要缓存的模型列表 [Book1、Book2、Book3]。当我尝试缓存它们时出现此错误:无法pickle _Element对象 这是我正在使用的代码:
if cache.get(isbn):
sellers = cache.get(isbn)
else:
sellers = get_all_amazon_sellers(isbn)
cache.set(isbn, sellers, 600)
非常感谢!
I have a list of models, [Book1, Book2, Book3], that I need to cache. I get this error, when I try to cache them: can't pickle _Element objects
Here is the code that I am using:
if cache.get(isbn):
sellers = cache.get(isbn)
else:
sellers = get_all_amazon_sellers(isbn)
cache.set(isbn, sellers, 600)
Thank you so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能必须将数据转换为 python 列表,如所讨论的此处
You might have to convert your data into a python list, as discussed here
列表中的某些值可能是特殊类型,而不是常见的 python 对象。当我想腌制用 lxml 解析的文本时,我遇到了同样的麻烦。一些有用的链接:lxml问题和我的记录。
May be some value in your list is special type, and not common python object. I met the same trouble when I want to pickle texts which are parsed with lxml.Some useful links:lxml question and my record.