我有一个用 django 实现的 REST-ful 服务,对于访问的每个资源,我想缓存可能被访问的相关数据。
例如 ressourcehttp://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'
?
谢谢