jma
Results
3
issues of
jma
How to get the cache key if I have a cached function like this? ```py @cached(ttl=30, serializer=PickleSerializer()) async def fetchrow_from_db(pool: asyncpg.Pool, id: int): record = await pool.fetchrow("SELECT * FROM my_table...
Is it possible to implement cache expiration events on this lib? If it is can I have an example?