Caching library with support for multiple cache backends
Project description
Cachetory
Documentation
Sneak peak
from cachetory import serializers
from cachetory.backends import async_ as async_backends
from cachetory.caches.async_ import Cache
cache = Cache[int, bytes](
serializer=serializers.from_url("pickle://?pickle-protocol=4"),
backend=async_backends.from_url("redis://localhost:6379"),
)
async def main() -> None:
await cache.set("foo", 42)
assert await cache.get("foo") == 42
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
cachetory-3.4.2.tar.gz
(19.9 kB
view hashes)
Built Distribution
cachetory-3.4.2-py3-none-any.whl
(37.6 kB
view hashes)
Close
Hashes for cachetory-3.4.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a49b501d3636216f5a5e8510528d6846f7e66e52bce4c9c7ad0282606535b627 |
|
MD5 | 708db0c4499112ae174a2dbdda15d77c |
|
BLAKE2b-256 | bcca9e93e1b873277b6936dea65451e9bfc5ec5044593b1d1cf8b49a2e757786 |