Simple JSON cache for expensive functions, respecting user directories
Project description
Provides a function decorator that caches the return value in a JSON file in the appropriate application cache directory.
It requires all function parameters and return values to be encodeable to JSON, so that the cache content is human-readable. The file names are based on a SHA512 hash of the function parameters.
It supports a “vary” guard value (e.g. a data model version) that protects against using old versions of cache.
Additionally, a cheaper default function (e.g. returning shipped, precalculated values) can be specified as a stand-in until an explicit recalculate function is called.
Usage
Example usage:
from app_json_file_cache import AppCache
cache = AppCache("myapp")
@cache("expensive")
def expensive_function():
return calculator()
More Example usage:
from app_json_file_cache import AppCache
cache = AppCache("myapp")
@cache("expensive", vary=VERSION)
def expensive_function(param):
return calculator(param)
expensive_function.recalculate(param1) # recalculate if external effects change
Using a default function until the next recalculate:
from app_json_file_cache import AppCache
cache = AppCache("myapp")
def cheap_standin(param):
return estimate(param)
@cache("expensive", vary=VERSION, cheap_default_func=cheap_standin)
def expensive_function(param):
return calculator(param)
expensive_function(param1) # cheap_standin is used
expensive_function.recalculate(param1) # cache is updated with expensive_function
expensive_function(param1) # cached value from expensive_function is used
Caveats
Names must be unique per app. If you reuse names, chaos ensues.
Each set of function parameter values creates a new file. This may lead to too many files in a directory on some systems.
Mixing positional and keyword arguments is not supported
It’s your responsibility that return values are serializable to JSON.
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file app_json_file_cache-1.0.1.tar.gz.
File metadata
- Download URL: app_json_file_cache-1.0.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ae47b28accbf58ba29697fdfb2d4ee4d1deaee1e8e470d4980943146acef173
|
|
| MD5 |
cf1dbdb5696821ec26f7e5a41119cfbf
|
|
| BLAKE2b-256 |
152ef083fe1004524297c1c400a99c3304252829ab9b433ef1f13f3e4666d1bb
|
File details
Details for the file app_json_file_cache-1.0.1-py3-none-any.whl.
File metadata
- Download URL: app_json_file_cache-1.0.1-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
751a382cf3e4a3a345f54e2a8edeb0b3613ea01e071707f18c124431998967ea
|
|
| MD5 |
2f8451c81f1ea95dbf0a4ae28456179a
|
|
| BLAKE2b-256 |
10f8c6363879ae9ba513cbec95d67718c10c41689226a713b7288acac022b2c1
|