aboutsummaryrefslogtreecommitdiff
path: root/python/python3-async-lru/README
blob: 12b148029c5f0a50db99171ce527f17d2e5c3ba2 (plain)
1
2
3
4
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.