Skip to main content

A simple, thread-safe, zero external dependencies key-value store with asynchronous memory buffering capabilities, binary data support, tagging system, data compression, and pluggable storage backends.

Project description

NADB - Not A Database

A simple, thread-safe, zero external dependencies key-value store with asynchronous memory buffering capabilities and disk persistence.

Tests codecov

:rotating_light: This project is educational and not intended for production use. :rotating_light:

Features

  • Thread-safe operations for setting, getting, and deleting key-value pairs.
  • In-memory buffering of key-value pairs with asynchronous flushing to disk.
  • Periodic flushing of the buffer to disk to ensure data integrity.
  • Manual flushing capability for immediate persistence.
  • Namespace and database separation for organized data storage.
  • Simple usage and minimal setup required.
  • NEW: Support for any file type (binary data storage)
  • NEW: Tag system for organizing and querying data
  • NEW: Data compression for efficient storage
  • NEW: TTL (Time To Live) for automatic data expiration
  • NEW: Performance metrics and monitoring
  • NEW: Storage compaction for optimizing disk usage
  • NEW: Pluggable storage backends

Installation

# Basic installation
pip install nadb

# Installation with Redis support
pip install nadb[redis]

The basic installation includes only the filesystem backend. If you want to use the Redis backend, you need to install the package with Redis support as shown above.

Quickstart

Here's a basic example of how to use NADB:

from nadb import KeyValueStore, KeyValueSync

# Create a KeyValueStore instance

data_folder_path = './data'
db_name = 'db1'
buffer_size_mb = 1  # 1 MB
flush_interval_seconds = 60  # 1 minute
namespace = 'namespace1'

# Initialize the KeyValueSync for asynchronous flushing
kv_sync = KeyValueSync(flush_interval_seconds)
kv_sync.start()  # Start the synchronization thread

# Initialize the KeyValueStore with compression enabled
kv_store = KeyValueStore(
    data_folder_path=data_folder_path, 
    db=db_name, 
    buffer_size_mb=buffer_size_mb, 
    namespace=namespace, 
    sync=kv_sync,
    compression_enabled=True,
    storage_backend="fs"  # Use the filesystem storage backend
)

# Store text data with tags
text_data = "Hello, world!".encode('utf-8')
kv_store.set("text_key", text_data, tags=["text", "greeting"])

# Store binary data (any type of file)
with open("image.png", "rb") as f:
    binary_data = f.read()
kv_store.set("image_key", binary_data, tags=["binary", "image"])

# Store data with TTL (expiration)
ttl_data = "This will expire".encode('utf-8')
kv_store.set_with_ttl("temporary_key", ttl_data, ttl_seconds=3600, tags=["temporary"])

# Get a value
text_value = kv_store.get("text_key")  # Returns bytes that can be decoded: text_value.decode('utf-8')

# Get a value with metadata
image_data, metadata = kv_store.get_with_metadata("image_key")
print(f"Image size: {metadata['size']} bytes, tags: {metadata['tags']}")

# Query by tags
image_keys = kv_store.query_by_tags(["image"])
print(f"All image keys: {image_keys}")

# List all tags
all_tags = kv_store.list_all_tags()
print(f"All tags in store: {all_tags}")

# Delete a key-value pair
kv_store.delete("text_key")

# Get performance statistics
stats = kv_store.get_stats()
print(f"Total items: {stats['total_items']}")
print(f"Buffer utilization: {stats['buffer_utilization_percent']:.2f}%")
print(f"Operations: {stats['metrics']['operations']}")

# Run storage compaction
compaction_results = kv_store.compact_storage()
print(f"Compaction results: {compaction_results}")

# Manual flush (optional, as flushing occurs automatically based on buffer size and time interval)
kv_store.flush()

# Stop the synchronization process and exit
kv_sync.sync_exit()

Advanced Features

Tag System

NADB allows you to associate tags with your key-value pairs, making organization and retrieval more flexible:

# Store with multiple tags
kv_store.set("user:123", user_data, tags=["user", "premium", "active"])

# Query by one or more tags (all tags must match)
premium_users = kv_store.query_by_tags(["user", "premium"])

Binary Data Storage

NADB now supports storing any type of binary data. This is perfect for images, documents, or any other file type:

# Store an image
with open("large_image.jpg", "rb") as f:
    image_data = f.read()
kv_store.set("image:profile", image_data, tags=["image", "profile"])

# Store a PDF document
with open("document.pdf", "rb") as f:
    pdf_data = f.read()
kv_store.set("document:contract", pdf_data, tags=["document", "contract"])

TTL (Time To Live)

Automatically expire data after a specified time:

# This data will automatically be removed after 1 hour
kv_store.set_with_ttl("session:token", token_data, ttl_seconds=3600, tags=["session"])

Compression

NADB automatically compresses large data to save disk space:

# Enable compression when creating the store
kv_store = KeyValueStore(..., compression_enabled=True)

# Run manual compaction to optimize existing data
compaction_results = kv_store.compact_storage()

Storage Backends

NADB supports pluggable storage backends to store your data in different systems:

# Use the default filesystem backend
kv_store = KeyValueStore(..., storage_backend="fs")

# Use Redis as a distributed storage backend (requires 'redis' package)
kv_store = KeyValueStore(
    data_folder_path=data_folder_path, 
    db=db_name, 
    buffer_size_mb=buffer_size_mb, 
    namespace=namespace, 
    sync=kv_sync,
    storage_backend="redis", 
    host="localhost",     # Redis host
    port=6379,            # Redis port 
    db=0,                 # Redis database number
    password=None         # Redis password if required
)

# In the future, additional backends like Memcached may be supported:
# kv_store = KeyValueStore(..., storage_backend="memcache")

Redis Backend Features

The Redis backend provides several advantages for distributed applications:

  • Fully distributed storage: Both data and metadata are stored in Redis, making it ideal for clustered applications
  • High performance: Redis's in-memory nature provides very fast read/write operations
  • Automatic failover: Can be used with Redis Sentinel or Redis Cluster for high availability
  • Built-in TTL support: Uses Redis's sorted sets for efficient TTL management
  • Tag-based queries: Leverages Redis sets for efficient tag querying

To use the Redis backend, first install the required dependency:

pip install redis

Then initialize your KeyValueStore with storage_backend="redis" and any Redis connection parameters.

To implement your own storage backend, create a class in the storage_backends directory that implements the required interface methods (see fs.py and redis.py for examples).

Performance Metrics

Monitor the performance and usage of your database:

# Get detailed statistics
stats = kv_store.get_stats()
print(f"Read operations: {stats['metrics']['operations'].get('read', {}).get('count', 0)}")
print(f"Average read time: {stats['metrics']['operations'].get('read', {}).get('avg_ms', 0):.2f} ms")
print(f"Data compression ratio: {stats['metrics']['compression_ratio']:.2f}x")

License

This project is licensed under the MIT License - see the LICENSE file for details.

Development

Continuous Integration

This project uses GitHub Actions for continuous integration. Every push to the main branch and every pull request will trigger the test suite to run against multiple Python versions.

Running Tests

Para rodar os testes localmente:

# Rodar todos os testes
make test-all

# Rodar testes com relatório de cobertura
make test-cov

# Rodar apenas testes do sistema de arquivos
make test-fs

# Rodar apenas testes do Redis
make test-redis

# Rodar apenas testes dos backends de armazenamento
make test-backends

Redis Tests

Os testes do Redis necessitam de um servidor Redis rodando em localhost:6379. Se o Redis não estiver disponível, os testes falharão (diferente das versões anteriores onde os testes eram pulados).

Para instalar o Redis:

  • macOS: brew install redis && brew services start redis
  • Ubuntu/Debian: sudo apt-get install redis-server && sudo systemctl start redis
  • Windows: Instale via WSL ou use o Chocolatey

Você pode rodar os testes do Redis com:

make test-redis

Development

Para contribuir com o desenvolvimento do pacote:

  1. Clone o repositório
  2. Instale as dependências de desenvolvimento:
    pip install -e ".[dev]"
    
  3. Para suporte a Redis, instale:
    pip install -e ".[redis]"
    
  4. Para todos os extras:
    pip install -e ".[dev,redis]"
    

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

nadb-0.1.5.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nadb-0.1.5-py3-none-any.whl (26.5 kB view details)

Uploaded Python 3

File details

Details for the file nadb-0.1.5.tar.gz.

File metadata

  • Download URL: nadb-0.1.5.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc2

File hashes

Hashes for nadb-0.1.5.tar.gz
Algorithm Hash digest
SHA256 0d7fa00a4943be7cb78e79d44b446b2bb60f16002af3a7d9bd6c09e281528ef4
MD5 f0722970f9a62e4d0faabe2fe41f6028
BLAKE2b-256 d7d34c25bfa41b48f8806652dd6332e38fde0497e9b9cc4b1f6613b339d5512e

See more details on using hashes here.

File details

Details for the file nadb-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: nadb-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 26.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.0rc2

File hashes

Hashes for nadb-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4a3e0743d2d59053418549df5f18aa2922ba990dd4a627e2036c9e2928117e3e
MD5 8700572d27f8f5ea7b58b9a153786ed0
BLAKE2b-256 8e738f9fb0bb519c2284e47d23cebcafac932344be343f929a33cdad8d299bac

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