Skip to main content

Redis built into a python package

Project description

Description

This module makes using Redis simple.

The module contains an embedded redis server that it will automatically configure and start when the redis bindings are accessed.

It kills the embedded redis server and cleans up when the redislite object is deleted or the python interpreter exists.

It also provides functions to patch the normal redis bindings module to use the redislite module so existing code that uses the redis bindings can be used without modification.

Usage

redislite provides enhanced versions of the redis.Redis() and redis.StrictRedis() classes.

These enhanced classes take the same arguments as they’re corresponding redis classes.

Both enhanced classes accept one additional optional argument, which is the filename to use for the redis.db file.

These enhanced classes provide the following additional functionality:

  • They configure and start and embedded copy of the redis server running on a unix domain socket in the redislist temp directory for the communication to the redis service.

  • TCP communication is disabled.

  • The classes have two additional attributes:
    • db - The path to the db backing file for the redis instance.

    • pid - The process id (pid) of the embedded redis server.

  • If the db argument is passed and there is another redislite object using that db, it will create a new connection to that redislite instance.

  • The redis server for a redislite object is shutdown and it’s configuration is deleted when the object is cleaned up.

redislite also provides functions to MonkeyPatch the redis.Redis and redis.StrictRedis classes to use redislite.

Example

Here we open a python shell and set a key in our embedded redis db

$ python
Python 2.7.5 (default, Mar  9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from redislite import Redis
>>> redis_connection = Redis('/tmp/redis.db')
>>> redis_connection.keys()
[]
>>> redis_connection.set('key', 'value')
True
>>> redis_connection.get('key')
'value'
>>> quit()
$

Here we open the same redis db and access the key we created during the last run

(testvenv)redislite dhubbard$ python
Python 2.7.5 (default, Mar  9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from redislite import Redis
>>> redis_connection = Redis('/tmp/redis.db')
>>> redis_connection.keys()
['key']
>>> redis_connection.get('key')
'value'
>>> quit()
$

It’s also possible to MonkeyPatch the normal redis classes to allow modules that use redis to use the redislite classes. Here we patch redis and use the redis_collections module.

(py27)redislite dhubbard$ python
Python 2.7.5 (default, Mar  9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import redislite.patch
>>> redislite.patch.patch_redis()
>>> import redis_collections
>>> td = redis_collections.Dict()
>>> td['foo']='bar'
>>> td.keys()
['foo']
>>> quit()
$

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

redislite-1.0.12.tar.gz (1.2 MB view details)

Uploaded Source

File details

Details for the file redislite-1.0.12.tar.gz.

File metadata

  • Download URL: redislite-1.0.12.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for redislite-1.0.12.tar.gz
Algorithm Hash digest
SHA256 7d195cddd87df02f71f6ac769b5ceb0e8e5dedd7cdcb3f5d7a9ecfc3ca896da2
MD5 820699f08bafb7d278a9c8bf4f9b170a
BLAKE2b-256 0f139ede7b160e6a720f1658b28362a9fa3ed4f082dfae99ad802c5ab4906ed7

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