Michał Żmuda
Michał Żmuda
Hi, There is no integration with gevent/greenlets. I believe it won't work out-of-the-box unfortunately. You could take a look at integrating asyncio with gevent (as mentioned there https://github.com/gevent/gevent/issues/982 ). If...
This library is focused on memoization and due to that, it has to follow different principles than put/get caches. Think more of a loading cache like in [caffeine](https://github.com/ben-manes/caffeine/wiki). Let me...
If you still want to use this lib but not to use decorators you could try a workaround (I'm sharing that with you but I haven't used that one myself...
In sync flow (no concurrency) there is no risk of dogpiling. Still, I guess that you'd like to use a single solution for caching. The main focus of this lib...
Have anyone found the way? (We are having the same problem.)
I changed GitHub Actions config, so tests would be executed on PRs - could you update the branch (merging latest changes from master) so we could check is tests start...
The stacktrace looks bad, but I'm afraid this may not be a solution. Currently `await_updated` is used with no `await`, so instead of `Awaitable[sth]` the result would be `Awaitable[Awaitable[sth]]`
Quite a while passed - maybe it's no longer relevant, but how did you solve/avoid the issue? Maybe this pattern could be applied to the library itself?
I'd appreciate suggestions for a better default `KeyExtractor`. The current one (based on `str`) is far from foolproof, and I'm unsure about what would truly be foolproof. Alternatively, perhaps there...
closed due to inactivity