Memoize asyncio Python function calls
Project description
aiomemoize
Memoize asyncio Python calls. Invalidation is manual/explicit for each set of arguments, although exceptions raised are not cached. This can be used for coroutines, and functions that return a promise.
Installation
pip install aiomemoize
Usage
For a coroutine whose arguments are hashable, you can create a memoized version by passing it to memoize
. This returns a tuple of the memoized function, and a function to invalidate the cache on a per-item basis.
For example, the below
import asyncio
from aiomemoize import memoize
async def main():
memoized, invalidate = memoize(coro)
results = await asyncio.gather(*[
memoized('a'),
memoized('a'),
memoized('b'),
])
print(results)
invalidate('a')
results = await asyncio.gather(*[
memoized('a'),
memoized('a'),
memoized('b'),
])
print(results)
await memoized('a')
async def coro(value):
print('Inside coro', value)
await asyncio.sleep(1)
return value
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()
will output
Inside coro a
Inside coro b
['a', 'a', 'b']
Inside coro a
['a', 'a', 'b']
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiomemoize-0.0.3.tar.gz
(2.0 kB
view hashes)
Built Distribution
Close
Hashes for aiomemoize-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f43482f396765038af49b33d4a4915b24e403049fc777883ad25cb3e5ac38b5c |
|
MD5 | 75b5cc8a0f65a779809f74790bbd64cc |
|
BLAKE2b-256 | a9f24de59365566e454aa880db8d2a6369349f8fa726d1d2c472a1309eb6ba70 |