Minimal persistent memoization cache
Project description
Cachalot
Cachalot is a minimal persistent memoization cache. It provides a decorator, that stores function result for future use. Perfect for heavy computations and I/O operation (such as web requests). On backend, it uses TinyDB for storage.
Features
- Simple usage via decorator
- Persistent caching
- Key expiration
- Maximum cache size, to prevent bloat
Installation
Cachalot requires Python 3.5 or newer to run.
Python package
You can easily install Cachalot using pip:
pip3 install cachalot
Manual
Alternatively, to get the latest development version, you can clone this repository and then manually install it:
git clone git@gitlab.com:radek-sprta/cachalot.git
cd cachalot
python3 setup.py install
Usage
from cachalot import Cache
@Cache()
def expensive_function():
return expensive_calculation()
Advanced usage
from cachalot import Cache
@Cache(path='cache.json', timeout=3600, size=5000)
def expensive_function():
return expensive_calculation()
path
: Path to the database file. Defaults to .cache.json.timeout
: How long should the data be cached in seconds. Defaults to 86400 (1 day).size
: Maximum number of keys cached. Defaults to 10000.
For more information, see documentation.
TODO
- Test suite
- Optionally retry if blank data is returned
Contributing
For information on how to contribute to the project, please check the Contributor's Guide
Contact
incoming+radek-sprta/cachalot@gitlab.com
License
MIT License
Credits
This package was created with Cookiecutter and the python-cookiecutter project template. Inspired by Cashier
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
Built Distribution
File details
Details for the file cachalot-0.1.3.tar.gz
.
File metadata
- Download URL: cachalot-0.1.3.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb299bdf4d10dea717d6bc5a49adf407b7d11ae9eec98b4f93232236f429096a |
|
MD5 | 9bf4d6e5d162db19a93c161c38b562d7 |
|
BLAKE2b-256 | c38737dead994f3010bb2be5f1303f601165ccba85a2f811dccf5dce26223e56 |
Provenance
File details
Details for the file cachalot-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: cachalot-0.1.3-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ffa6c8f82256b5b71e0fb41c4316629567a800d80553a2f0a27033cc003676c |
|
MD5 | ecda443f544a52287b0314b7530fe048 |
|
BLAKE2b-256 | a025ec951f15fa8cefe49feecf4b78015665953ed39dddcf1b6d3f9f6a9652e6 |