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.0.0.tar.gz (12.8 kB view hashes)

Uploaded Source

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