文件名称:sqlite_cache:一个由 sqlite 支持的愚蠢的 python 缓存
文件大小:7KB
文件格式:ZIP
更新时间:2024-07-07 09:01:14
Python
一个由 sqlite 支持的哑缓存。 缓存具有最大容量,并将删除旧条目为新条目腾出空间。 用法示例: from sqlite_cache import SQLiteCache cache = SQLiteCache(".cache.db") cache.set("key", "value") print "value for {0!r} is {0!r}".format("key", cache.get("key")) 支持 Python >= 2.6 和 >= 3.2。
【文件预览】:
sqlite_cache-master
----.travis.yml(384B)
----README.rst(634B)
----.coveragerc(26B)
----tools()
--------run_tests.sh(143B)
----sqlite_cache()
--------core.py(4KB)
--------tests()
--------__init__.py(90B)
----tox.ini(155B)
----LICENSE(1KB)
----setup.py(241B)
----.gitignore(10B)
----dev_requirements.txt(22B)
----dev_requirements26.txt(34B)