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.2.1.tar.gz
(19.8 kB
view hashes)
Built Distribution
cachetory-3.2.1-py3-none-any.whl
(37.4 kB
view hashes)
Close
Hashes for cachetory-3.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50389e7114b585e9db439d3b4f28f8e39ae501419ba09542542abb13ca7078b2 |
|
MD5 | 4697ec99ec460113c56e003d84722c56 |
|
BLAKE2b-256 | 67b2fa6554a7d0cfde5ccc97432f21d414cf6126887654801d6bf458b75f0287 |