我有一个用django实现的REST-ful服务,对于每个访问过的ressource,我想缓存可能被访问的相关数据。
例如,资源http://www.example.com/publication/1280
会给出xml响应:
<publication xmlns="http://www.example.com" xmlns:atom="http://www.w3.org/2005/atom">
<abstract>None</abstract>
<owner>
<atom:link rel="owner" type="application/xml" href="http://www.example.com/user/1">ckpuser</atom:link>
</owner>
<authors>
<author>
<atom:link rel="author" type="application/xml" href="http://www.example.com/author/564">P. Almquist</atom:link>
</author>
</authors>
<comments></comments>
<tags></tags>
<keywords></keywords>
<referencematerials></referencematerials>
<peerreviews></peerreviews>
<fields>
<howpublished>RFC 1349 (Proposed Standard)</howpublished>
<url>http://www.ietf.org/rfc/rfc1349.txt</url>
</fields>
</publication>
然后我想预先缓存与资源http://www.example.com/user/1
和http://www.example.com/author/564
相关联的数据。
在Web服务中,给出的响应是一种数据结构,我认为缓存整个响应比查询集更好。如果我们要缓存查询集,那么每次访问资源时我们都会在模板渲染中浪费时间。
这是一个好方法吗?我错过了什么吗?
如果这种方法是正确的,那么我怎样才能使用django提供的中间件预先缓存视图
'django.middleware.cache.UpdateCacheMiddleware'
和
'django.middleware.cache.FetchFromCacheMiddleware'
?
谢谢
答案 0 :(得分:0)
尝试Django的per-view cache。
基本上,它使用URL(以及其他一些东西)作为缓存键,并按如下方式实现:
from django.views.decorators.cache import cache_page
@cache_page(60 * 15) # cache for 15 minutes
def my_view(request):
...
这将缓存视图的XML输出,因为您怀疑在缓存有效时需要较少的资源来检索而不是仅缓存查询集。
缓存中间件django.middleware.cache.UpdateCacheMiddleware
和django.middleware.cache.FetchFromCacheMiddleware
将缓存整个网站,这很可能不是您想要的。