pycache:内存缓存中的VeryFast,用于存储已经计算的操作的结果

时间:2024-06-03 18:15:04
【文件属性】:

文件名称:pycache:内存缓存中的VeryFast,用于存储已经计算的操作的结果

文件大小:6KB

文件格式:ZIP

更新时间:2024-06-03 18:15:04

Python

## PyCache Pycache是​​使用链接堆栈实现的LRU。 ###安装: git clone https://github.com/plasmashadow/pycache cd pycache python setup.py install ###用法: 您可以将pycache用作对象和装饰器 from pycache import cached from pycache import Cache cache = Cache () @ cached ( cache ) def add ( x , y ): return x + y #operation will be computed and stored on cache print add ( 2 , 3 ) #will be retrived from cache add ( 2 , 3 ) # As


【文件预览】:
pycache-master
----.gitignore(36B)
----README.md(763B)
----tests()
--------test_cache.py(416B)
--------__init__.py(0B)
----pycache()
--------Im.py(2KB)
--------__init__.py(4KB)
--------decorators.py(1KB)
----MANIFEST.in(17B)
----setup.py(694B)
----.travis.yml(913B)

网友评论