Skip to main content

Redis driver for pynosqlc

Project description

pynosqlc-redis

Redis 7 driver for pynosqlc — a JDBC-inspired unified async NoSQL access layer for Python.

Install this driver to connect pynosqlc to a Redis 7 instance using the redis-py async client. All pynosqlc operations — store, get, insert, update, delete, and find — are supported.

Requirements

  • Python 3.12+
  • Redis 7.0+ instance (local or remote)
  • pynosqlc-core and pynosqlc-memory (installed automatically as dependencies)

Installation

pip install alt-python-pynosqlc-redis

Quick Start

import asyncio
from pynosqlc.core import DriverManager, Filter
import pynosqlc.redis  # auto-registers RedisDriver on import

async def main():
    async with await DriverManager.get_client('pynosqlc:redis://localhost:6379') as client:
        col = client.get_collection('orders')

        # Store a document at a known key (upsert semantics)
        await col.store('order-001', {'item': 'widget', 'qty': 5, 'status': 'pending'})

        # Retrieve a document by key
        doc = await col.get('order-001')
        print(doc)  # {'item': 'widget', 'qty': 5, 'status': 'pending'}

        # Insert a document with a driver-assigned key
        key = await col.insert({'item': 'gadget', 'qty': 2, 'status': 'pending'})
        print(key)  # e.g. 'a1b2c3d4-...'

        # Update fields (shallow merge — only listed fields change)
        await col.update('order-001', {'qty': 10, 'status': 'shipped'})

        # Find documents matching a filter
        f = Filter.where('status').eq('pending').build()
        async for doc in await col.find(f):
            print(doc)

        # Delete a document
        await col.delete('order-001')

asyncio.run(main())

URL Scheme

pynosqlc:redis://<host>:<port>

The pynosqlc: prefix is stripped before the URL is passed to redis-py, so redis:// becomes the effective scheme. Any format accepted by redis.asyncio.from_url can be used, including rediss:// for TLS:

URL Description
pynosqlc:redis://localhost:6379 Local Redis on the default port
pynosqlc:redis://redis.example.com:6379 Remote Redis instance
pynosqlc:rediss://redis.example.com:6380 Remote Redis with TLS (rediss://)

Storage Layout

Each document and collection index is stored as a separate Redis key:

Redis key Type Contents
pynosqlc:<collection>:<doc_key> String JSON-serialised document
pynosqlc:<collection>:_keys Set All doc keys in the collection

For example, storing a document in the orders collection under key order-001 creates:

  • pynosqlc:orders:order-001{"item": "widget", "qty": 5}
  • pynosqlc:orders:_keys{"order-001"}

Filtering

Filters are evaluated in-process after fetching all documents from Redis. find() retrieves the entire collection in a single pipeline batch GET, then applies the pynosqlc filter AST in memory using MemoryFilterEvaluator.

There is no server-side query translation. For collections expected to hold large numbers of documents, consider partitioning data into smaller collections or evaluating Redis Search as a complementary tool.

All filter operators are supported: eq, ne, gt, gte, lt, lte, contains, in_, nin, exists, and their and_ / or_ / not_ combinators.

Connection Notes

  • All connections use decode_responses=True — values are returned as str, so there is no byte-decoding step before json.loads.
  • redis-py's default connection pool is used; pool size is not currently configurable through pynosqlc's properties argument.
  • find() uses a Redis pipeline with transaction=False to batch-GET all documents in a single round trip without acquiring a MULTI/EXEC lock.

Troubleshooting

ConnectionError: Error 111 connecting to localhost:6379 Redis is not running or is not reachable on the configured host and port. Verify with redis-cli -h <host> -p <port> ping — you should receive PONG.

ImportError: No module named 'pynosqlc.redis' The package is not installed. Run pip install alt-python-pynosqlc-redis.

ValueError: No driver found for URL ... The import import pynosqlc.redis was not executed before calling DriverManager.get_client(...). The import is what triggers driver registration — it must come before any get_client call.

Filter returns no results despite documents being present Confirm you called .build() at the end of your filter chain: Filter.where('field').eq('value').build(). Passing an unbuilt FieldCondition object instead of the built dict will match nothing.

Further Reading

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

alt_python_pynosqlc_redis-1.0.4.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

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

alt_python_pynosqlc_redis-1.0.4-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file alt_python_pynosqlc_redis-1.0.4.tar.gz.

File metadata

  • Download URL: alt_python_pynosqlc_redis-1.0.4.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for alt_python_pynosqlc_redis-1.0.4.tar.gz
Algorithm Hash digest
SHA256 19453d3d317eab7e797234ede1280442a42bcfd4ccab352496f3618c4b2d35be
MD5 1c6ba65fae2d64f420f0007401369b27
BLAKE2b-256 3ba0cd63b13c33e68244dfe8487fd650a35d9988f0bf4833102af8b4db1f1390

See more details on using hashes here.

File details

Details for the file alt_python_pynosqlc_redis-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: alt_python_pynosqlc_redis-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for alt_python_pynosqlc_redis-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 3f26e5d005467028e9562f12c10d0d56a4c0581fd9ca9f90f942708d19e30a74
MD5 2ecae66c5ca3755aecadab51d1730dc1
BLAKE2b-256 86a580b0ab6fdd4cf303c89f8b87db1ab8d5aae9985cb04ffdb0927089d9d814

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