Skip to main content

persistent decorators mirroring functools.lru_cache

Project description

PicoCache

Persistent, datastore‑backed lru_cache for Python.
PicoCache gives you the ergonomics of functools.lru_cache while keeping your cached values safe across process restarts and even across machines.
Two back‑ends are provided out of the box:

  • SQLAlchemyCache – persists to any RDBMS supported by SQLAlchemy (SQLite, Postgres, MySQL, …).
  • RedisCache – stores values in Redis, perfect for distributed deployments.

Why PicoCache?

  • Familiar API – decorators feel identical to functools.lru_cache.
  • Durable – survive restarts, scale horizontally.
  • Introspectablecache_info() and cache_clear() just like the standard library.
  • Zero boilerplate – pass a connection URL and start decorating.

Installation

pip install picocache

Quick‑start

1. SQL (SQLite example)

from picocache import SQLAlchemyCache

# Create the decorator bound to an SQLite file
sql_cache = SQLAlchemyCache("sqlite:///cache.db")

@sql_cache(maxsize=256)        # feels just like functools.lru_cache
def fib(n: int) -> int:
    return n if n < 2 else fib(n - 1) + fib(n - 2)

2. Redis

from picocache import RedisCache

redis_cache = RedisCache("redis://localhost:6379/0")

@redis_cache(maxsize=128, typed=True)
def slow_add(a: int, b: int) -> int:
    print("Executing body…")
    return a + b

On the second call with the same arguments, slow_add() returns instantly and “Executing body…” is not printed – the result came from Redis.


API

Each decorator object is initialised with connection details and called with the same signature as functools.lru_cache:

SQLAlchemyCache(url_or_engine, *, key_serializer=None, value_serializer=None, ...)
RedisCache(url_or_params, *, key_serializer=None, value_serializer=None, ...)

__call__(maxsize=128, typed=False)

Returns a decorator that memoises the target function.

Param Type Default Meaning
maxsize int/None 128 Per‑function entry limit (None → no limit).
typed bool False Treat arguments with different types as distinct (same as stdlib).

The wrapped function gains:

  • .cache_info()namedtuple(hits, misses, currsize, maxsize)
  • .cache_clear() → empties the persistent store for that function.

Running the tests

uv sync
just test
  • SQL tests run against an in‑memory SQLite DB (no external services).
  • Redis tests are skipped automatically unless a Redis server is available on localhost:6379.

License

MIT – see LICENSE for details.

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

picocache-0.1.0.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

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

picocache-0.1.0-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file picocache-0.1.0.tar.gz.

File metadata

  • Download URL: picocache-0.1.0.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.14

File hashes

Hashes for picocache-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a7a51a9e6f7ffa87df4e1064f043007d714a5184cf2c96303bd440a4153323ff
MD5 d619ef9962b70d52b680965d67367825
BLAKE2b-256 ef0f8027a7d7f322dfcba7ce8fe18d244f2d9bac5d0db71569d45373269b7949

See more details on using hashes here.

File details

Details for the file picocache-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: picocache-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.14

File hashes

Hashes for picocache-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 261d8e202dada9767c5228d47dee1bae5785bb6d160971486ecf416cc5468177
MD5 e3360f2cad2fe96a60cb087a1edccd8c
BLAKE2b-256 683d601d84cf06eb4a2429a3a8c95dca057cd7b103e3779791442bd96871e414

See more details on using hashes here.

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