slackbuilds_ponce/python/python3-async-lru
Isaac Yu ea75c86741
python/python3-async-lru: Added (Simple LRU cache for asyncio).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2024-11-01 12:29:11 +07:00
..
python3-async-lru.info
python3-async-lru.SlackBuild
README
slack-desc

This package is a port of Python's built-in functools.lru_cache function
for asyncio. To better handle async behaviour, it also ensures multiple
concurrent calls will only result in 1 call to the wrapped function,
with all awaits receiving the result of that call when it completes.