aboutsummaryrefslogtreecommitdiff
path: root/python/python3-async-lru/README
diff options
context:
space:
mode:
authorIsaac Yu <isaacyu@protonmail.com>2024-11-01 07:57:18 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-11-01 12:29:11 +0700
commitea75c8674182af4ed14926b5fdd262e05d6294e0 (patch)
treebb1fa6935d391fa8fe92e113200b22087be16012 /python/python3-async-lru/README
parent1e99f73286031c10ad082f0ec8584f20577c7eef (diff)
python/python3-async-lru: Added (Simple LRU cache for asyncio).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-async-lru/README')
-rw-r--r--python/python3-async-lru/README4
1 files changed, 4 insertions, 0 deletions
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.