Redis built into a python package
Project description
Description
Self contained Python interface to the Redis key-value store.
It makes it possible to use Redis without the need to install and configure a redis server.
Requirements
The redislite module requires Python 2.7 or higher.
Make sure Python development headers are available when installing redislite.
On Ubuntu/Debian systems, install them with:
apt-get install python-dev
On Redhat/Fedora systems, install them with:
yum install python-devel
On Mac OSX you will need the XCode command line utilities installed. If you do not have xcode installed on recent OSX releases they can be installed by running:
xcode-select --install
Installation
To install redislite, simply:
$ pip install redislite
or using easy_install:
$ easy_install redislite
or from source:
$ python setup.py install
Getting Started
>>> import redislite
>>> r = redislite.StrictRedis()
>>> r.set('foo', 'bar')
True
>>> r.get('foo')
'bar'
Usage
redislite provides enhanced versions of the redis.Redis() and redis.StrictRedis() classes that take the same arguments as the corresponding redis classes and take one additional optional argument. Which is the name of the Redis rdb file to use. If the argument is not provided it will create a new one.
redislite also provides functions to MonkeyPatch the redis.Redis and redis.StrictRedis classes to use redislite, so existing python code that uses Redis can use the redislite version.
Example
Here we open a Python shell and set a key in our embedded Redis db
>>> from redislite import Redis
>>> redis_connection = Redis('/tmp/redis.db')
>>> redis_connection.keys()
[]
>>> redis_connection.set('key', 'value')
True
>>> redis_connection.get('key')
'value'
Here we open the same Redis db and access the key we created during the last run
>>> from redislite import Redis
>>> redis_connection = Redis('/tmp/redis.db')
>>> redis_connection.keys()
['key']
>>> redis_connection.get('key')
'value'
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.
>>> import redislite.patch
>>> redislite.patch.patch_redis()
>>> import redis_collections
>>> td = redis_collections.Dict()
>>> td['foo']='bar'
>>> td.keys()
['foo']
Or the Walrus module
>>> from redislite.patch import patch_redis
>>> patch_redis('/tmp/walrus.db')
>>> from walrus import *
>>> db = Database()
>>> huey = db.Hash('huey')
>>> huey.update(color='white', temperament='ornery', type='kitty')
<Hash "huey": {'color': 'white', 'type': 'kitty', 'temperament': 'ornery'}>
>>> huey.keys()
['color', 'type', 'temperament']
>>> 'color' in huey
True
>>> huey['color']
'white'
More Information
There is more detailed information on the redislite documentation page at http://redislite.readthedocs.org/en/latest/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file redislite-1.0.120.tar.gz
.
File metadata
- Download URL: redislite-1.0.120.tar.gz
- Upload date:
- Size: 1.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbf5d60bffd206b99831fa3c847accdea85318e2576c56c5dcde4b1f1e0ee915 |
|
MD5 | 14646b76f075dc5f4276424f60fc476f |
|
BLAKE2b-256 | cade903ed35c2eab8031de90147778de3f621f46a85baaafacaea984ef6e13df |