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.3.0.tar.gz
(19.8 kB
view hashes)
Built Distribution
cachetory-3.3.0-py3-none-any.whl
(37.4 kB
view hashes)
Close
Hashes for cachetory-3.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6db80e3bcea2c92eac3f16c62b989b8f30bc65f7b8fb1aefd19820d690455241 |
|
MD5 | 40087a4131e055a94fa1d97a76be5949 |
|
BLAKE2b-256 | f21262b71c09cf163eba5dc27d9f7a36524cd7c8bc9edfc33d4b047bc9138959 |