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-2.10.1.tar.gz
(19.2 kB
view hashes)
Built Distribution
cachetory-2.10.1-py3-none-any.whl
(35.3 kB
view hashes)
Close
Hashes for cachetory-2.10.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b896de55cdf80d138b09304b7b80030217896f06d179cea65a6c3db2771140f4 |
|
MD5 | 653850b100f79fbc00264856874db427 |
|
BLAKE2b-256 | 447bf715e4aac0746b865b13914b954acec009dd81f6f80b5238555750a0eac9 |