From ea75c8674182af4ed14926b5fdd262e05d6294e0 Mon Sep 17 00:00:00 2001 From: Isaac Yu Date: Fri, 1 Nov 2024 07:57:18 +0700 Subject: python/python3-async-lru: Added (Simple LRU cache for asyncio). Signed-off-by: Willy Sudiarto Raharjo --- python/python3-async-lru/README | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 python/python3-async-lru/README (limited to 'python/python3-async-lru/README') diff --git a/python/python3-async-lru/README b/python/python3-async-lru/README new file mode 100644 index 0000000000..12b148029c --- /dev/null +++ b/python/python3-async-lru/README @@ -0,0 +1,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. -- cgit v1.2.3