Skip to main content

A simple lazy loaded key:value database

Project description

lazy_db

badge badge

A lazily loaded key:value db intended for use with large datasets that are too big to be loaded into memory. The database supports integers, strings, lists of integers, bytes, and dictionaries. This database is meant to strike a good balance of retrieval/insertion speed and memory usage. This database best fits a scenario where each key has a lot of data stored under it. Scenarios where values are under 100 bytes in size this database is not very well suited for.

Install with pip install lazy-database

Example usage:

from lazy_db import LazyDb

db = LazyDb("test.lazy")
db.write("test_value", "value")
print(db.read("test_value"))  # prints "value"
db.close()

How it works

File layout

All text in database files are encoded in utf-8 format. Each database has a json string at the start of the file that denotes the database's settings, who's end is marked with a NUL byte (00 in hex)

Each database entry is appended at the end of the file and is laid out in this format:

Name Size (bytes) Purpose
NUL 1 Marks the start of the entry. When the initial headers index, the starting byte of each entry is checked for this NUL byte to be sure the database hasn't been corrupted. This is the beginning to what is considered the "header" for the entry (NUL bytes carry a hex value of 0x00)
Key type 1 Marks if the key is an integer or a string.
Key any The key for the database entry.
NUL 1 Marks the end of the key. This is necessary since string keys don't have a set size.
Content length content_int_size An integer (little endian) depicting the length of the content (including the content type). Defaults to 4 bytes long. This is the end to what is considered the "header" for the entry
Content type 1 Marks if the content is a string, int, int list, dict, or bytes.
Content Content length Stores the content

Content type labels

Name Hex type value Type description
String 0x01 A utf-8 string
Int 0x02 An integer
Dict 0x03 A dictionary (internally stored as a utf-8 json string)
Int list 0x04 A list of integers. Max integer size is defined by int_list_size (default: 4 bytes)
Bytes 0x05 A bytes object

The algorithm

When loading a database, all entry headers are scanned for their key value and lengths. This allows for values to be retrieved very quickly without having to load the content of every entry, at the cost of having to store the key and content length in memory though. This approach makes the database best for cases where your database will be storing a lot of data in each key that you can't afford to store in memory, however you can afford to store the name values and lengths of each element in memory.

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

lazy_database-1.0.1.tar.gz (10.3 kB view details)

Uploaded Source

Built Distribution

lazy_database-1.0.1-py2.py3-none-any.whl (6.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file lazy_database-1.0.1.tar.gz.

File metadata

  • Download URL: lazy_database-1.0.1.tar.gz
  • Upload date:
  • Size: 10.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for lazy_database-1.0.1.tar.gz
Algorithm Hash digest
SHA256 51569e87ced10fc6a994b9d205d7ccf2a8cdb7865b49bbe0009d9276a5af6bc7
MD5 ec069b5d3cc766a06dc142164c0501ed
BLAKE2b-256 1caa983a8846a3ec2e46f3ab386fc06e12510a75def28ea0ca4fccdd6f9e0844

See more details on using hashes here.

File details

Details for the file lazy_database-1.0.1-py2.py3-none-any.whl.

File metadata

  • Download URL: lazy_database-1.0.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for lazy_database-1.0.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0e56a8688e0220cc83acc8859d888c7fd7f29b054f7e0ccf4bb19d9f99d3e71c
MD5 b2dea04f099d38644e3a854b4341750e
BLAKE2b-256 cec4cea288b76683a0a4108adeb97e0f695f1cc78427dd40941f05c380fe02ff

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page