Django 的模板标签“缓存”不在模板中缓存查询集
我使用这样的缓存标签:
{% cache 1200 special %}
<div id="recommended-topics" class="ui-ce ui-ce-simple">
{{aticle_list}}
</div>
{% endcache %}
我发现在 memcache 中有一个名为 template.cache.special.d41d8cd98f00b204e9800998ecf8427e
的键。
但是,我仍然发现 django 执行查询来获取 article_list
为什么这不起作用?
I use cache tag like this :
{% cache 1200 special %}
<div id="recommended-topics" class="ui-ce ui-ce-simple">
{{aticle_list}}
</div>
{% endcache %}
I found that there is a key named template.cache.special.d41d8cd98f00b204e9800998ecf8427e
in memcache.
however, I still find django execute the query to get the article_list
why this doesn't work??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我要检查的第一个地方是加载该模板的视图。您是否在视图中执行查询来填充
article_list
?如果是这样,那么您的模板缓存可能正在工作,但您仍在访问数据库以生成未使用的查询集。
如果是这种情况,最简单的解决方案是查看设置 每个视图缓存。
First place I would check is the view which loads that template. Are you doing a query in the view to populate
article_list
?If so, then your template cache may be working but you're still hitting the database to generate a queryset that's not being used.
If that's the case, the simplest solution would be to look at setting up per-view caches.