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.9.0.tar.gz
(19.1 kB
view hashes)
Built Distribution
cachetory-2.9.0-py3-none-any.whl
(35.2 kB
view hashes)
Close
Hashes for cachetory-2.9.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53c52497c8ee19205df316b60e5770b0f9f5c5aee9648ed9baf0549e5bf098c1 |
|
MD5 | 4ecee1e276a2d4c1ad638e5a55534212 |
|
BLAKE2b-256 | 0719a357d857eb0a9367a878801402d2a5645f9475eca3089a1d4c3f1bd5af30 |