Django积木块11 —— 缓存

缓存

Django的缓存可以缓存视图中的函数,模版中的内容,和一些不长变化的数据。

# setting
CACHES = {
    'default':{
        'BACKEND':'django.core.cache.backends.locmem.LocMemCache',
        'TIMEOUT':60,
    }
}

# url
url(r'^cache$',Cachehandler),

# 视图的缓存
# view
from django.views.decorators.cache import cache_page
@cache_page(60*3)
def Cachehandler(request):
    return HttpResponse('hello2')
    # return HttpResponse('hello1')

# 模版的缓存
# html
{% load cache %}
<!--缓存  时间  名字-->
{% cache 120 hello %}
hello
{% endcache %}
# 在视图函数中渲染这个模版就可以了

# 缓存数据
# view
from django.core.cache import cache
def cache2(request):
    cache.set('key1','value',600)
    print cache.get('key1')
    cache.clear()
    return render(request,'cache.html')

转载于:https://www.cnblogs.com/NeedEnjoyLife/p/6991280.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值
>