source/projects/async_cache/README.md
Reid 'arrdem' McKenzie b2b7363797 Import the async caches
2022-11-21 00:04:31 -07:00

422 B

Async cache

An LRU and TTL cache for async functions in Python.

  • alru_cache provides an LRU cache decorator with configurable size.
  • attl_cache provides a TTL+LRU cache decorator with configurable size.

Neither cache proactively expires keys. Maintenance occurs only when requesting keys out of the cache.

License

Derived from https://github.com/iamsinghrajat/async-cache, published under the MIT license.