context_caching
Tyler Goodlet 2021-12-16 11:46:11 -05:00
parent da5e36bf0c
commit 953d15b67d
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
Add ``trionics.maybe_open_context()`` an actor-scoped async multi-task
context manager resource caching API.
Adds an SC-safe cacheing async context manager api that only enters on
the *first* task entry and only exits on the *last* task exit while in
between delivering the same cached value per input key. Keys can be
either an explicit ``key`` named arg provided by the user or a
hashable ``kwargs`` dict (will be converted to a ``list[tuple]``) which
is passed to the underlying manager function as input.