Skip to main content

Provides decorator for cache

Project description

Classic Cache

Classic Cache - предоставляет функциональность кеширования. Она поддерживает кэширование как в памяти, так и на основе Redis, и позволяет легко переключаться между ними. Является частью проекта "Classic".

Установка

Для установки Classic-Cache вы можете использовать pip:

pip install classic-cache

Для установки Classic-Cache с поддержкой Redis:

pip install classic-cache[redis]

Использование

Вот несколько примеров использования Classic-Cache.

from classic.cache import cached, InMemoryCache, RedisCache
from classic.components import component

@component
class SomeClass:

    # Кэширование результата метода some_method на 60 секунд
    @cached(ttl=60)
    def some_method(self, arg1: int, arg2: int) -> int:
        return arg1 + arg2

# кеширование в памяти
cache = InMemoryCache()
# кеширование в Redis
cache = RedisCache(connection=Redis())

some_instance = SomeClass(cache=cache)

# ручная инвалидация кэша
some_instance.some_method.invalidate(1, 2)
# ручное обновление кэша
some_instance.some_method.refresh(1, 2)

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

classic-cache-1.1.0.tar.gz (12.8 kB view details)

Uploaded Source

File details

Details for the file classic-cache-1.1.0.tar.gz.

File metadata

  • Download URL: classic-cache-1.1.0.tar.gz
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for classic-cache-1.1.0.tar.gz
Algorithm Hash digest
SHA256 e07d1760a268eeb14fec48159c5ea5e4f59de4d41a2089ed7c46818473af74ed
MD5 81468bcf0eacb80ab13dee5d21b65a82
BLAKE2b-256 3094c63f3196f14d88ee9502debfc18ac9a166a3334701f85e7187df142f248d

See more details on using hashes here.

Supported by

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