0

我有一个用 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/1http://www.example.com/author/564.

由于在 Web 服务中给出的响应是一种数据结构,我认为缓存整个响应比查询集更好。如果我们缓存查询集,那么每次访问资源时我们都会在模板渲染中浪费时间。

这是一个好方法吗?我错过了什么吗?

如果这种方法是正确的,那么我如何使用 django 提供的中间件预先缓存视图

'django.middleware.cache.UpdateCacheMiddleware'

'django.middleware.cache.FetchFromCacheMiddleware'?

谢谢

4

1 回答 1

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.UpdateCacheMiddlewaredjango.middleware.cache.FetchFromCacheMiddleware这很可能不是您想要的。

于 2012-04-12T18:29:29.447 回答