当前位置: 首页 > 工具软件 > Py3Cache > 使用案例 >

python3 缓存使用

阮轶
2023-12-01

 pip install py3Cache 

from py3cache import Py3Cache
p3c = Py3Cache.Py3Cache()
p3c.set("sites","oschina",{"id":100,"name":"oschina","url":"https://gitee.com"})
p3c.get("sites","oschina")
p3c.evict("sites","oschina")
p3c.close()

 类似资料: