cache語法django
from django.core.cache import cache #存入內存 cache.set("aaa",123) #從內存中獲取 cache.get("aa")
設置緩存時效緩存
#只在內存中存五秒鐘 cache.set("aaa",123,10)