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. It makes heavy use of lmdb-dict behind the scenes.
Why?
I ran into issues with langchain's caches when developing wdoc (my RAG library) and after months of waiting I decided to fix it myself. Instead of trusting sqldict's implementation with langchain's concurrency, I made my own.
This makes it very easy to add persistent caching to anything. I initially made an implementation that used SQLite (with support for encryption, compression and handled concurrency via a singleton), but then I discovered lmdb-dict which is likely much better as it's developed by professionals. It's based on LMDB which is more suitable for what I was after than SQLite3. If you want to use the SQLite version, check out versions before 2.0.0.
Features:
- Thread-safe: All operations are protected by a reentrant lock. Multiple threads can 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).
- Caching: Uses a
LRUCache128from cachetools for better performance. - Customizable serialization: Supports custom serializers for both keys and values, enabling encryption, compression, etc.
- 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.
- 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 .
- Run 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:
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
)
# Multiple instances can safely access the same database
d2 = PersistDict(database_path="/path/to/db")
assert list(d.keys()) == list(d2.keys())
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.7.tar.gz.
File metadata
- Download URL: persistdict-0.2.7.tar.gz
- Upload date:
- Size: 25.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19c8bdb8cafe1fd1dbfd25c0795d27b33d6a25609156b4ecda2816407835a8b4
|
|
| MD5 |
0bf6b4ec9213d81e50a8ce652d0c8182
|
|
| BLAKE2b-256 |
6293650264815cbc0a3f7a71dc3582d28fd4bd0962124e6bc153d29671e7c2d9
|
File details
Details for the file persistdict-0.2.7-py3-none-any.whl.
File metadata
- Download URL: persistdict-0.2.7-py3-none-any.whl
- Upload date:
- Size: 22.5 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 |
0af7b4d6158ea7e54cfe555f676ecc111d265f21551548982977e1104b745290
|
|
| MD5 |
b5dc842a6abfb04bd1f5854457b7d809
|
|
| BLAKE2b-256 |
97f9fc0a4a9b0aced941ab5273c75810e0b1eb33fbf6c0e149f9ea37ee447fbd
|