Skip to main content

Metapackage for sync and asyncio cachetools

Project description

scitrera-ext-cachetools

scitrera-ext-cachetools is a metapackage that combines cachetools and asyncache to make them all conveniently available under a single namespace.

It provides both synchronous and asynchronous caching decorators and various cache implementations (TTL, LRU, LFU, etc.) out of the box.

Installation

pip install scitrera-ext-cachetools

Features

  • Unified Access: Import everything you need for caching from one place.
  • Sync & Async Support: Includes cachetools for synchronous code and asyncache for asyncio.
  • Conditional Caching: Includes cached_in_production, a utility to easily disable caching in development environments.

Available Exports

From scitrera_ext_cachetools, you can import:

  • Decorators: cached, cachedmethod, cached_async, cachedmethod_async
  • Cache Types: Cache, TTLCache, TLRUCache, LRUCache, FIFOCache, RRCache, LFUCache
  • Utilities: keys, cached_in_production

cached_in_production

The only new functionality provided by this package is the cached_in_production decorator. It is a "meta-decorator" designed to make it easy to test code without memoization during development while ensuring it is enabled in production, without requiring code changes.

Caching is enabled by default unless the environment variable DEV_NOCACHE is set to True, 1, yes, or other truthy values (parsed via scitrera-app-framework).

Usage Example

Synchronous Caching

from scitrera_ext_cachetools import cached_in_production, TTLCache, cached

@cached_in_production(cached, cache=TTLCache(maxsize=100, ttl=300))
def get_expensive_data(key):
    # This logic will be cached in production, 
    # but can be bypassed in dev by setting DEV_NOCACHE=1
    return ...

Asynchronous Caching

from scitrera_ext_cachetools import cached_in_production, TTLCache, cached_async

@cached_in_production(cached_async, cache=TTLCache(maxsize=100, ttl=300))
async def get_expensive_data_async(key):
    return ...

License

This project is licensed under the BSD-3-Clause License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scitrera_ext_cachetools-0.0.1.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scitrera_ext_cachetools-0.0.1-py3-none-any.whl (3.1 kB view details)

Uploaded Python 3

File details

Details for the file scitrera_ext_cachetools-0.0.1.tar.gz.

File metadata

  • Download URL: scitrera_ext_cachetools-0.0.1.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for scitrera_ext_cachetools-0.0.1.tar.gz
Algorithm Hash digest
SHA256 6e35e348eba702cbc0f944b23ece43708bddde7859b97b46f52d90e293df0885
MD5 e6979ca3749a4bdc1454bacc4425af09
BLAKE2b-256 93b6249591adfc1c44db8efa28285dae57f3efcebf13348b298264d2158564d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scitrera_ext_cachetools-0.0.1.tar.gz:

Publisher: publish.yml on scitrera/scitrera-ext-cachetools-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scitrera_ext_cachetools-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for scitrera_ext_cachetools-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 613b00c52112ae52370518ae65a9c8b17bc4a259cb0cede6788a230239f2f36e
MD5 a2313c1b4f198b0258f2f394f6c1c376
BLAKE2b-256 b58b13c26077db50823ba2727fbe5d8c19778d4ecc9c40de116bfdbe56d18ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scitrera_ext_cachetools-0.0.1-py3-none-any.whl:

Publisher: publish.yml on scitrera/scitrera-ext-cachetools-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page