Skip to main content

No project description provided

Project description

fleche

docs

A persistent caching solution for arbitrary Python functions - like lru_cache on steroids.

flèche is French for 'arrow' and also used in fencing as a fast attack.

Features

  • Persistent Caching: Cache function results across runs using various storage backends
  • Flexible Storage: Choose from file-based, SQL, in-memory, or custom storage solutions
  • Intelligent Hashing: Automatically generates cache keys from function arguments
  • Query Support: Search and retrieve cached results with metadata filtering
  • Configurable: Control what gets hashed (version, module, code, arguments)
  • Multiple Backends: File (pickle, JSON), SQLAlchemy, Bagofholding, and more
  • Thread-Safe: Safe for use in multi-threaded environments
  • Type-Aware: Works seamlessly with NumPy, Pandas, and custom types

Installation

Basic Installation

pip install fleche

With Optional Dependencies

# For SQL storage
pip install fleche[sqlalchemy]

# For alternate serialization formats
pip install fleche[cloudpickle,dill]

# For Bagofholding storage
pip install fleche[bagofholding]

# For documentation
pip install fleche[docs]

# For development and testing
pip install fleche[tests]

Quick Start

Basic Usage

from fleche import fleche

@fleche()
def expensive_function(x, y):
    """This function's results will be cached."""
    print(f"Computing for {x}, {y}...")
    return x + y

# First call computes the result
result = expensive_function(1, 2)  # prints "Computing for 1, 2..."

# Second call retrieves from cache
result = expensive_function(1, 2)  # no print - result from cache!

# Different arguments compute again
result = expensive_function(2, 3)  # prints "Computing for 2, 3..."

Working with Cache Results

@fleche()
def compute(x):
    return x ** 2

# Get the cache key (digest) for arguments
digest = compute.digest(5)

# Check if result is cached
if compute.contains(5):
    result = compute.load(5)
else:
    result = compute(5)

# Get Call object with metadata
call = compute.call(5)

Configuration

Decorator Options

@fleche(
    version=1,           # Versioning for function changes
    hash_version=True,   # Include version in cache key
    hash_module=True,    # Include module name in cache key
    hash_code=False,     # Include function code in cache key
    require=None,        # Required argument for caching
    ignore=None,         # Arguments to ignore in cache key
    isolate=False,       # Isolate cache by working directory
)
def my_function(x):
    return x * 2

Storage Backends

File Storage (Default)

  • Stores cache in filesystem using pickle by default
  • XDG Base Directory Specification compliant

SQL Storage

  • Requires sqlalchemy
  • Stores metadata and results in database
  • Currently supports SQLite
  • Query capabilities for cached results

In-Memory Storage

  • For testing or temporary caching
  • Loses data when process exits

Custom Backends

Implement the Storage interface to create custom backends.

Advanced Features

Versioning

Track function versions to invalidate cache when implementation changes:

@fleche(version=2)
def process_data(data):
    # Incrementing version invalidates all v1 cache entries
    return data * 2

Ignoring Arguments

Skip certain arguments when generating cache keys:

@fleche(ignore=['verbose', 'debug'])
def compute(x, y, verbose=False, debug=False):
    return x + y  # Cache key only uses x and y

Querying Results

Find cached results matching specific criteria (only after issuing a corresponding call):

@fleche()
def fetch_data(user_id, date):
    return get_data(user_id, date)

# Issue a call to cache the result
fetch_data(user_id=123, date='2024-01-01')

# Get all cached results
all_results = fetch_data.query()

# Get results matching specific arguments
results = fetch_data.query(user_id=123)

# Load results lazily
results = fetch_data.query(lazy=True)

Performance

Use the included benchmarks to evaluate performance:

python -m benchmarks.run_benchmarks

Testing

Run the test suite:

pip install "fleche[tests]"
pytest tests/

Contributing

Contributions are welcome! Please ensure tests pass and code follows the project style.

License

BSD-3-Clause License - see LICENSE file for details.

Resources

  • Documentation: See docs/ directory
  • Tests: See tests/ for usage examples
  • Benchmarks: See benchmarks/ for performance metrics

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

fleche-0.5.5.tar.gz (141.4 kB view details)

Uploaded Source

File details

Details for the file fleche-0.5.5.tar.gz.

File metadata

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

File hashes

Hashes for fleche-0.5.5.tar.gz
Algorithm Hash digest
SHA256 9430c88498e084ff4d757f0fd3c09a9f342b82ba8f5bf085d15075240de2a9a9
MD5 77bb86ab77382d71eabdfdddfeb4b697
BLAKE2b-256 bdb727c4e4e0b40379fe63cef4c5bc1b6eb0d402934e3ea72707bfe6a4a380ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for fleche-0.5.5.tar.gz:

Publisher: pypi-publish.yml on pmrv/fleche

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