django 刷新缓存_Django缓存不会刷新

I've added a simple caching to my web application and when I delete or add new object the cache does not get refreshed after the peroid of time (2 minutes) that I've set.

It looks like it froze. When I restart my application then it gets refreshed.

I tried it on memached and locmemcache.

INDEX_LIST_CACHE_KEY = "index_list_cache_key"

class IndexView(BaseView):

queryset = Advert.objects.all().select_related('category', 'location')[:25]

template_name = "adverts/category_view.html"

def get_queryset(self):

queryset = cache.get(INDEX_LIST_CACHE_KEY)

if queryset is None:

queryset = self.queryset

cache.set(INDEX_LIST_CACHE_KEY, queryset, 2 * 60)

return queryset

Why caching behaves like that in this project?

Edit - settings.py:

for locmemcache

CACHES = {

'default': {

'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',

'LOCATION': 'oglos-cache'

}

}

for memcached

CACHES = {

'default': {

'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',

'LOCATION': '127.0.0.1:11211',

}

}

解决方案

Because by slicing the queryset in the class definition, you've evaluated it then and there - at class definition time, ie when the server starts up. So the cache is being refreshed, but only with an old set of items. Don't do that slice at class level: do it when returning the results from get_queryset.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值