tinycache a python modules base on local file for any python data struct
Project description
Tiny Cache
What is TinyCache?
tinycache is a python modules base on local file for any python data struct
Programming Language
- python 2.7
- python 3.7
Install
pip install tinycache
Quick Start
use python decorators syntax to wrap the call target
from tinycache import WithCache
@WithCache(5)
def Add(a, b):
return a + b
class Foo():
@WithCache(5)
def Bar(self, a, b):
return a - b
Cache File Format
cache file is json format, with filename look like './cache/<md5_of_key_str>'
{
"created_at": 1581652043.872242,
"expired_at": 1581652048.872242,
"key_str": "Add(&<class 'int'>=1&<class 'int'>=2)",
"key": "9d0aa1c9634aa575696710c7dfb9f018",
"value": 3
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tinycache-0.1.3.tar.gz
(2.5 kB
view details)
File details
Details for the file tinycache-0.1.3.tar.gz.
File metadata
- Download URL: tinycache-0.1.3.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60174a216664b6f1afb68e89cbbe8d550ce71d11bb38dab71320a83e79be973f
|
|
| MD5 |
083d87bfa9493501501b93dbf7260cb8
|
|
| BLAKE2b-256 |
345e79eedf9b5077d480542e6fc00d0d780f1088bb2b319c3169acd95f2bc039
|