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
LRUCache128from 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file persistdict-0.2.11.tar.gz.
File metadata
- Download URL: persistdict-0.2.11.tar.gz
- Upload date:
- Size: 30.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b30ed87b901c87bbc243a7d7596ed5d42da53cee3bdc2e23cbb2bedf9573604
|
|
| MD5 |
36862f591f8ebec2bc507d6b22d2da2d
|
|
| BLAKE2b-256 |
e563525baafbd7982156ea3eeddf1fd039b9765887b86caa0d46dc06efa058e4
|
File details
Details for the file persistdict-0.2.11-py3-none-any.whl.
File metadata
- Download URL: persistdict-0.2.11-py3-none-any.whl
- Upload date:
- Size: 25.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df3bd64fd7bfaee5b6d406322b3696eb0e1f5edfd6e0e2723f76d3a704ca20dd
|
|
| MD5 |
815629cb908400ad0d06b994a571bd7b
|
|
| BLAKE2b-256 |
dae65abef55cb9b4f18d3e2eb6b950307fb25580d221ba27123acb7d51cc3d82
|