Skip to main content

Simple cache with pydantic.

Project description

cachetic

PyPI version Python Version License

A simple, type-safe caching library supporting Redis and disk storage with automatic Pydantic serialization.

Features

  • Type-safe: Full type checking with generic support
  • Flexible backends: Local disk cache (diskcache) or Redis
  • Pydantic integration: Automatic serialization for any type via TypeAdapter
  • Simple API: Just get() and set() with optional TTL

Installation

pip install cachetic

Quick Start

Basic Usage

import pydantic
from cachetic import Cachetic

# Define your model
class Person(pydantic.BaseModel):
    name: str
    age: int

# Create cache instance
cache = Cachetic[Person](
    object_type=pydantic.TypeAdapter(Person),
    cache_url=".cache"  # Local disk cache
)

# Store and retrieve
person = Person(name="Alice", age=30)
cache.set("user:1", person)

result = cache.get("user:1")
print(result.name)  # "Alice"

Redis Backend

cache = Cachetic[Person](
    object_type=pydantic.TypeAdapter(Person),
    cache_url="redis://localhost:6379/0"
)

Primitive Types

# String cache
str_cache = Cachetic[str](
    object_type=pydantic.TypeAdapter(str),
    cache_url=".cache"
)

str_cache.set("greeting", "Hello, World!")
print(str_cache.get("greeting"))  # "Hello, World!"

# List cache
list_cache = Cachetic[list[str]](
    object_type=pydantic.TypeAdapter(list[str]),
    cache_url=".cache"
)

list_cache.set("items", ["apple", "banana", "cherry"])

Complex Types

from typing import Dict, List

# Dictionary cache
data = {"users": [{"id": 1, "name": "Alice"}], "total": 1}
dict_cache = Cachetic[Dict](
    object_type=pydantic.TypeAdapter(Dict),
    cache_url=".cache"
)

dict_cache.set("user_data", data)

# List of models
people_cache = Cachetic[List[Person]](
    object_type=pydantic.TypeAdapter(List[Person]),
    cache_url=".cache"
)

people = [Person(name="Alice", age=30), Person(name="Bob", age=25)]
people_cache.set("team", people)

Configuration

Constructor Parameters

  • object_type: pydantic.TypeAdapter[T] - Required type adapter for serialization
  • cache_url: Cache backend - file path for disk cache or redis://... for Redis
  • default_ttl: Default expiration in seconds (-1 = no expiration, 0 = disabled)
  • prefix: Key prefix for all cache operations

TTL Examples

# No expiration (default)
cache = Cachetic[str](
    object_type=pydantic.TypeAdapter(str),
    default_ttl=-1
)

# 1 hour expiration
cache = Cachetic[str](
    object_type=pydantic.TypeAdapter(str),
    default_ttl=3600
)

# Per-operation TTL
cache.set("key", "value", ex=300)  # 5 minutes

Environment Variables

Use CACHETIC_ prefix:

export CACHETIC_CACHE_URL="redis://localhost:6379/0"
export CACHETIC_DEFAULT_TTL=3600
export CACHETIC_PREFIX="myapp"

Error Handling

from cachetic import CacheNotFoundError

# get() returns None for missing keys
result = cache.get("nonexistent")  # None

# get_or_raise() throws exception
try:
    result = cache.get_or_raise("nonexistent")
except CacheNotFoundError:
    print("Key not found")

License

MIT 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

cachetic-0.4.0.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

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

cachetic-0.4.0-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file cachetic-0.4.0.tar.gz.

File metadata

  • Download URL: cachetic-0.4.0.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.11.11 Darwin/24.5.0

File hashes

Hashes for cachetic-0.4.0.tar.gz
Algorithm Hash digest
SHA256 e1049d952a810f3e10be54e0a1fc545ec2fba78b8e53961978807798f5141446
MD5 d5800146f4bdc16dc3a383514689c680
BLAKE2b-256 21c56b0bf8f5e13718713337b2c84d6270e6346bbd304b0904850be7b7efaf48

See more details on using hashes here.

File details

Details for the file cachetic-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: cachetic-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 8.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.11.11 Darwin/24.5.0

File hashes

Hashes for cachetic-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fec4115ab0c5db51ca84b35d494f362c6ee0a76465511ae26ee97bba5163e427
MD5 964be8e076bce31eeff0eddaba2e5672
BLAKE2b-256 7bf4a0006ff8b153478156c8dda40e681a0816fe8584f3421529b3733f3cd322

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