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.4.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.4-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: persistdict-0.2.4.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.4.tar.gz
Algorithm Hash digest
SHA256 263d2090d15e0e64352513fe26e5f48eaa1bcee84e81db9ac3878b8195f1e082
MD5 eb8cbe8d2e6432c79299823bd69907ac
BLAKE2b-256 1963695766674b46fd8acded00eccce7e01af29b60c3e380a88e5b99318d8930

See more details on using hashes here.

File details

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

File metadata

  • Download URL: persistdict-0.2.4-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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9799746fe7dcd72e7c83baa193aa0fee1ba8da8ca7dc4f71bc1499778823f62c
MD5 4412ebf3f77d371cd3acc775b0a2e8d5
BLAKE2b-256 7289cbe2da180131e6d59b0a959fe333c3b76b313df6bb6ae6f3748df1a1fcb6

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