Skip to main content

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

Project description

PersistDict

Just a DIY version sqldict: looks like a dict and acts like a dict but is persistent via an LMDB database. Makes heavy use of lmdb-dict behind the scenes.

Why?

I ran into issue with langchain's caches when developping wdoc (my RAG lib, optimized for my use) and after months of waiting I decided to fix it myself. And instead of trusting sqldict's implementation with langchain's concurrency I made my own. This makes it very easy to add persistent cache to anything. Also it was easy to do thanks to my BrownieCutter. I initially made an implementation that used sqlite (with support for encryption, compression and handled concurrency via a singleton) but then I stumbled upon lmdb-dict which is very probably way better as it's done by pros. It's based on LMDB which is a more suitable for what I was after when doing PersistDict than sqlite3. If you want to use the sqlite version take a look at version before 2.0.0.

Features:

  • threadsafe: if several threads try to access the same db it won't be a problem. Even if multiple other threads use also another db. And if several python scripts run at the same time and try to access the same db, LMDB should make them wait appropriately.
  • atime and ctime: each entry includes a creation time and a last access time.
  • expiration: won't grow too large because old keys are automatically removed after a given amount of days.
  • cached: Uses a LRUCache128 from cachetools.
  • customizable serializer for keys and values: This can enable encryption, compression etc... By default, keys are compressed as lmdb has a 511 default key length.
  • only one dependency needed Only lmdb-dict-full is needed. If you have beartype installed it will be used, same with loguru.

Usage:

  • Download from pypi with pip install PersistDict
  • Or from git:
    • git clone https://github.com/thiswillbeyourgithub/PersistDict
    • cd PersistDict
    • pip install -e .
    • To run tests: cd PersistDict ; python -m pytest test.py
from PersistDict import PersistDict

# create the object
d = PersistDict(
    database_path=a_path,
    # verbose=True,
    # expiration_days=30,
)
# then treat it like a dict:
d["a"] = 1

# You can even create it via __call__, like a dict:
# d = d(a=1, b="b", c=str)  # this actually calls __call__ but is only
# allowed once per PersistDict, just like a regular dict

# it's a child from dict
assert isinstance(d, dict)

# prints like a dict
print(d)
# {'a': 1, 'b': 'b', 'c': str}

# Supports the same methods
assert sorted(list(d.keys())) == ["a", "b", "c"], d
assert "b" in d
del d["b"]
assert list(d.keys()) == ["a", "c"], d
assert len(d) == 2, d
assert d.__repr__() == {"a": 1, "c": str}.__repr__()
assert d.__str__() == {"a": 1, "c": str}.__str__()

# supports all the same types as value as pickle (or more if you change
# the serializer)
d["d"] = None

# If you create another object pointing at the same db, they will share the
# same cache and won't corrupt the db:
d2 = PersistDict(
database_path=dbp,
verbose=True,
)
list(d.keys()) == list(d2.keys()), d2

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.3.tar.gz (22.9 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.3-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: persistdict-0.2.3.tar.gz
  • Upload date:
  • Size: 22.9 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.3.tar.gz
Algorithm Hash digest
SHA256 2964548e41b6813b14a7b776571a7c565d41242f372fa8404fc0e3595d84ab91
MD5 4d1bee7cb132fc94d3c3f64d85676494
BLAKE2b-256 5a3eb2cb9bf330768b90070cb78c08f4bf58a67f51841e01ae9bbd325540ef57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: persistdict-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 21.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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f6b89162b9e7b54dca1c6652db5dda5faa4576d95a5a72f55ef92eb19f1a6ca6
MD5 9f724bbb032ae3ec5024c4e57f2a2314
BLAKE2b-256 10e3f3c359b7060bd259f64fa48dc089484f71f5dba863b1757b9eacb21f2a54

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