$ sudo apt-get install memcached
$ sudo apt-get install python-memcached
# settings.py中的配置
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': [
'127.0.0.1:11211',
]
}
}
在views.py中进行调用
# 方法一
from django.shortcuts import render
from django.views.decorators.cache import cache_page
@cache_page(60 * 15) # 秒数,这里指缓存 15 分钟,不直接写900是为了提高可读性
def index(request):
# 读取数据库等 并渲染到网页
return render(request, 'index.html', {'queryset':queryset})
# 方法二
from django.core.cache import cache
def heavy_view(request):
cache_key = 'my_heavy_view_cache_key'
cache_time = 1800 # time to live in seconds
result = cache.get(cache_key)
if not result:
result = # some calculations here
cache.set(cache_key, result, cache_time)
return result
# 方法三
urlpatterns = ('',
(r'^foo/(\d{1,2})/$', cache_page(60 * 15)(my_view)),
)
上面的设置应该没有问题吧?
问题一: 对于上面的方法一和方法二,请问我应该使用优先使用第一种吗?因为对于ListView/DetailView等视图,第二种方法太费劲了。
问题二: 请问对于memcached它是将所有请求的资源放入内存中间,那么这个内存设置的上限是多少??? 对于我这样的小型博客网站加以来只有20/30个页面,我可以将所有的请求全部放入缓存中吗?
问题三: 各位大神能不能推荐一下memcached(python)方面的教程,我想大致了解一下memcached将页面放入内存中间去的原理。
@zwillon答主下面的评论补充的很详细。
慕桂英546537
慕桂英3389331
相关分类