Skip to main content

Looks like a dict and acts like a dict but is persistent via an LMDB db

Project description

PersistDict

A persistent dictionary implementation backed by an LMDB database. PersistDict looks and acts like a Python dictionary but persists data to disk, making it ideal for caching and persistent storage needs.

Overview

PersistDict provides a dictionary-like interface that stores data on disk using the high-performance LMDB (Lightning Memory-Mapped Database). It builds upon lmdb-dict to provide a robust, thread-safe persistent dictionary with additional features like automatic expiration, metadata tracking, and customizable serialization.

Why PersistDict?

I created PersistDict while developing wdoc, my RAG library, after encountering issues with langchain's caching mechanisms. Instead of relying on existing implementations that didn't handle concurrency well, I built PersistDict to be thread-safe and robust from the ground up.

PersistDict makes it simple to add persistent caching to any Python application. While earlier versions (before 2.0.0) used SQLite, the current version leverages LMDB for better performance and reliability in concurrent environments.

Key Features

  • Thread-safe: All operations are protected by a reentrant lock, allowing multiple threads to safely access the same database without corruption.
  • Background Processing: Integrity checks and expiration run in a background thread by default, avoiding blocking the main thread during initialization.
  • Automatic Expiration: Old entries are automatically removed after a configurable number of days to prevent unbounded growth.
  • Metadata Tracking: Each entry includes creation time (ctime) and last access time (atime) for advanced data management.
  • Performance Optimized: Uses LRUCache128 from cachetools for better performance with frequently accessed items.
  • Customizable Serialization: Supports custom serializers for both keys and values, enabling encryption, compression, or any custom data transformation.
  • Key Hashing: Keys are hashed and cropped to handle the LMDB key size limitation (default 511 bytes).
  • Robust Error Handling: Gracefully handles serialization errors and database corruption with detailed logging.
  • Collision Management: Properly handles key hash collisions to ensure data integrity.
  • Minimal Dependencies: Only requires lmdb-dict-full. Optionally uses beartype for type checking and loguru for logging if available.

Installation

From PyPI

pip install PersistDict

From GitHub

git clone https://github.com/thiswillbeyourgithub/PersistDict
cd PersistDict
pip install -e .

Running Tests

cd PersistDict
python -m pytest tests/test_persistdict.py -v

Basic Usage

from PersistDict import PersistDict

# Create a persistent dictionary
d = PersistDict(
    database_path="/path/to/db",  # Path to the database directory
    expiration_days=30,           # Optional: entries older than this will be removed
    verbose=False,                # Optional: enable debug logging
    background_thread=True,       # Optional: run initialization tasks in background
)

# Use it like a regular dictionary
d["key"] = "value"
print(d["key"])         # "value"
print("key" in d)       # True
print(len(d))           # 1

# Dictionary-style initialization (only available once)
d = d(a=1, b="string", c=[1, 2, 3])

# Supports standard dictionary methods
for key in d.keys():
    print(key)
    
for value in d.values():
    print(value)
    
for key, value in d.items():
    print(f"{key}: {value}")

# Delete items
del d["a"]

# Clear the entire dictionary
d.clear()

Advanced Usage

Custom Serialization

import json
import pickle
import dill

# Custom serializers for encryption, compression, etc.
d = PersistDict(
    database_path="/path/to/db",
    key_serializer=json.dumps,       # Custom key serializer
    key_unserializer=json.loads,     # Custom key deserializer
    value_serializer=dill.dumps,     # Custom value serializer
    value_unserializer=dill.loads,   # Custom value deserializer
    key_size_limit=511,              # Maximum key size before hashing
    caching=True,                    # Enable/disable LRU caching
    background_timeout=30,           # Maximum time for background operations
)

Shared Database Access

Multiple instances can safely access the same database:

# Create two instances pointing to the same database
d1 = PersistDict(database_path="/path/to/db")
d2 = PersistDict(database_path="/path/to/db")

# Changes in one instance are visible in the other
d1["shared_key"] = "shared_value"
assert d2["shared_key"] == "shared_value"
assert list(d1.keys()) == list(d2.keys())

Background Thread Control

Control how initialization tasks run:

# Run in background (default)
d1 = PersistDict(database_path="/path/to/db", background_thread=True)

# Run in foreground (blocking)
d2 = PersistDict(database_path="/path/to/db", background_thread=False)

# Skip initialization tasks entirely
d3 = PersistDict(database_path="/path/to/db", background_thread="disabled")

Named Instances

Create named instances for better logging:

d = PersistDict(
    database_path="/path/to/db",
    name="cache_db",    # Name for identifying this instance in logs
    verbose=True        # Enable logging
)

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

persistdict-0.2.14.tar.gz (29.3 kB view details)

Uploaded Source

Built Distribution

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

persistdict-0.2.14-py3-none-any.whl (23.9 kB view details)

Uploaded Python 3

File details

Details for the file persistdict-0.2.14.tar.gz.

File metadata

  • Download URL: persistdict-0.2.14.tar.gz
  • Upload date:
  • Size: 29.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for persistdict-0.2.14.tar.gz
Algorithm Hash digest
SHA256 c59a6172de39834f8bb9ea6a13246dd45110723cfbdf11f1dc4a3024cda0e1b5
MD5 8cde0e340f84a972ce8387fd1ea32fab
BLAKE2b-256 446aef71ca638ee3d34651fe346f449b8194d2d8fe9ce4da36d34f8d39309f6e

See more details on using hashes here.

File details

Details for the file persistdict-0.2.14-py3-none-any.whl.

File metadata

  • Download URL: persistdict-0.2.14-py3-none-any.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for persistdict-0.2.14-py3-none-any.whl
Algorithm Hash digest
SHA256 5ead65a1721120dd142d553320af6e8cbc4fc7921c0566799be1fd501d7caa58
MD5 1207d8a1db114decc9a0d778dbe25c85
BLAKE2b-256 e201a876a897bdcb1662ab617f1497578b60293eb40560991e2d28fb96b96677

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