3

我正在查看美味的缓存文档并尝试设置我自己的简单缓存,但缓存似乎没有被调用。当我访问http://localhost:8000/api/poll/?format=json时,我得到了我的 sweetpie 生成的 json,但我没有从缓存类中得到输出。

from tastypie.resources import ModelResource
from tastypie.cache import NoCache
from .models import Poll


class JSONCache(NoCache):
    def _load(self):
        print 'loading cache'
        data_file = open(settings.TASTYPIE_JSON_CACHE, 'r')
        return json.load(data_file)

    def _save(self, data):
        print 'saving to cache'
        data_file = open(settings.TASTYPIE_JSON_CACHE, 'w')
        return json.dump(data, data_file)

    def get(self, key):
        print 'jsoncache.get'
        data = self._load()
        return data.get(key, None)

    def set(self, key, value, timeout=60):
        print 'jsoncache.set'
        data = self._load()
        data[key] = value
        self._save(data)


class PollResource(ModelResource):
    class Meta:
        queryset = Poll.objects.all()
        resource_name = 'poll'
        cache = JSONCache()
4

1 回答 1

7

似乎 Tastypie 不会自动缓存列表,tastypie.resources围绕行1027

def get_list(self, request, **kwargs):

    # ...

    # TODO: Uncached for now. Invalidation that works for everyone may be
    #       impossible.
    objects = self.obj_get_list(
        request=request, **self.remove_api_resource_names(kwargs))

    # ...

,而有细节(围绕线1050):

def get_detail(self, request, **kwargs):

   # ...

   try:
       obj = self.cached_obj_get(
           request=request, **self.remove_api_resource_names(kwargs))

   # ...

...请注意,在前一个片段obj_get_list中调用而不是cached_obj_get_list. 也许覆盖get_list和使用cached_obj_get_list也可以让您在这里使用缓存?

现在,默认情况下,您可能会从您的类中获得http://localhost:8000/api/poll/<pk>/?format=json(详细视图)而不是http://localhost:8000/api/poll/?format=json(列表视图)的输出。

于 2012-04-19T07:41:43.850 回答