wheezy.caching is a python package written in pure Python code. It is a lightweight caching library that provides integration with:
- python-memcached - Pure Python memcached client.
- pylibmc - Quick and small memcached client for Python written in C.
It introduces idea of cache dependency (effectively invalidate dependent cache items) and other cache related algorithms.
It is optimized for performance, well tested and documented.
Resources:
- source code and issues tracker are available on github
- documentation
wheezy.caching requires python version 3.8+. It is independent of operating system. You can install it from pypi site:
pip install -U wheezy.caching
pip install -U wheezy.caching[pylibmc]
pip install -U wheezy.caching[python-memcached]
If you run into any issue or have comments, go ahead and add on github.