如何在 Django 中缓存自定义模型列表?

发布于 2024-10-12 02:01:52 字数 260 浏览 3 评论 0原文

我有一个需要缓存的模型列表 [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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

§对你不离不弃 2024-10-19 02:01:52

您可能必须将数据转换为 python 列表,如所讨论的此处

You might have to convert your data into a python list, as discussed here

凉墨 2024-10-19 02:01:52

列表中的某些值可能是特殊类型,而不是常见的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文