You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That async_lru doesn't seem to care about parallel cache misses having identical args, which seems like a significant case for async.
In my project we, don't have a need for async LRU-- though we do have an @async_join decorator for simple side-effect functions (like an action), that will merge parallel calls, without regards to args.
I can't get my head around the complexity in the equivalent for
asyncio
:https://github.com/aio-libs/async-lru/blob/master/async_lru/__init__.py
But we have a small naive implementation (that should be async framework agnostic) that I could put here if anyone is interested?
The text was updated successfully, but these errors were encountered: