Python编程:使用cachy缓存数据
【摘要】 cachy使用pickle对对象进行序列化 支持驱动 File,Redis,Memcached,Database
文档 https://cachy.readthedocs.io/en/latest/installation.html
1、安装
pip install cachy
1
2、配置
from cachy import CacheManager
st...
cachy使用pickle对对象进行序列化
支持驱动 File,Redis,Memcached,Database
文档
https://cachy.readthedocs.io/en/latest/installation.html
1、安装
pip install cachy
- 1
2、配置
from cachy import CacheManager
stores = { 'default': 'file', 'stores': { 'file': { 'driver': 'file', 'path': 'cache' } }
}
cache = CacheManager(stores)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
3、CURD
# 添加
cache.put('key', 'value', 10)
# 获取
value = cache.get('key')
# print(value)
# 检查存在
print(cache.has('key'))
# cache.increment('key', 1) 报错
# 获取并且删除
value = cache.pull('key')
# 不存在则添加
cache.add('key', 'value', 10)
# 永久
cache.forever('key', 'value')
# 移除
cache.forget('key')
# 获取或更新 remember_forever 永久
value = cache.remember('key', 10, 'value')
print(value)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
4、使用装饰器
默认60 minutes
@cache
def get_users(): print("查询数据库") return "查询结果"
print(get_users())
- 1
- 2
- 3
- 4
- 5
- 6
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/103505050
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)