django cache缓存数据

容学林
2023-12-01

转自: 出处

针对数据编码实现:

  from django.core.cache import cache
  #存储缓存数据
  cache.set('cache_key',data,60*15)#cache_key为存储在缓存中的唯一值,data为存储的数据,60*15为缓存数据的时间
  #获取缓存数据
  cache.get('cache_key',None)#cache_key为储存缓存数据的唯一值


 类似资料: