Skip to main content

redis namespace

Project description

redis-namespace

redis-namespace for python

Redis::Namespace provides an interface to a namespaced subset of your [redis][https://redis.io] keyspace (e.g., keys with a common beginning), and requires the [redis-py][https://github.com/andymccurdy/redis-py].

import redis
from redis_namespace import StrictRedis

redis_connection = redis.StrictRedis()
namespaced_redis = StrictRedis(namespace='ns:')
namespaced_redis.set('foo', 'bar')  # redis_connection.set('ns:foo', 'bar')

namespaced_redis.get('foo')
redis_connection.get('ns:foo')

namespaced_redis.delete('foo')
namespaced_redis.get('foo')
redis_connection.get('ns:foo')

Installation

pip install redis-namespace

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

redis_namespace-0.0.3.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

redis_namespace-0.0.3-py2-none-any.whl (4.4 kB view hashes)

Uploaded Python 2

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