async-cache icon indicating copy to clipboard operation
async-cache copied to clipboard

A caching solution for asyncio

Results 2 async-cache issues
Sort by recently updated
recently updated
newest added

Rarely, but sometimes the unknown error happens, when a function with @AsyncTTL decorator is called: ``text File "/usr/local/lib/python3.10/site-packages/cache/async_ttl.py", line 56, in wrapper self.ttl[key] = await func(*args, **kwargs) File "/usr/local/lib/python3.10/site-packages/cache/async_ttl.py", line...

cachetools' cached decoractor has an `info` param that adds a wrapped info function for getting details on cache usage, which can be helpful for debugging. From [their docs](https://cachetools.readthedocs.io/en/latest/): > If...