./devel/py-async-lru, Simple LRU cache for asyncio

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.0.4, Package name: py311-async-lru-2.0.4, Maintainer: pkgsrc-users

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.


Master sites:

Filesize: 9.784 KB

Version history: (Expand)


CVS history: (Expand)


   2023-08-26 16:10:39 by Adam Ciarcinski | Files touched by this commit (4)
Log message:
py-async-lru: added version 2.0.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.