简单的页面缓存》
首先配置settings.py
settings.py CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache', 'LOCATION': '/data/volunteer/cache', } }
mkdir /data/volunteer/cache
chmod 777 -R /data/volunteer/cache
建立缓存 cache_page: views.py
from django.views.decorators.cache import cache_page @cache_page(9000) # 9000: 9000秒 def index(request): return local()
然后就可以在 /data/volunteer/cache 目录下看到一家建立的缓存了,十分的方便,页面加载再也不卡了哦~