cache语法django
from django.core.cache import cache #存入内存 cache.set("aaa",123) #从内存中获取 cache.get("aa")
设置缓存时效缓存
#只在内存中存五秒钟 cache.set("aaa",123,10)