Python client for Redis key-value store, extended to support additional features from YugaByteDB
Project description
The Python interface to the Redis key-value store, extended to support additional features from YugaByteDB.
This has been forked from https://github.com/andymccurdy/redis-py and is intended to be used against the YEDIS API end point of YugaByteDB. This client also supports additional commands (such as the time-series related commands) for use against YugaByte DB that are not part of the official Redis API.
Please refer to YugaByte DB docs for reference.
Installation
yedis requires a running YugaByteDB instance listening on the YEDIS end point, or a normal Redis server. See YugaByteDB quickstart or Redis’s quickstart for installation instructions.
To install yedis, simply:
$ sudo pip install yedis
or alternatively (you really should be using pip though):
$ sudo easy_install yedis
or from source:
$ sudo python setup.py install
Getting Started
>>> import redis
>>> r = redis.StrictRedis(host='localhost', port=6379, db=0)
>>> r.set('foo', 'bar')
True
>>> r.get('foo')
'bar'
By default, all responses are returned as bytes in Python 3 and str in Python 2. The user is responsible for decoding to Python 3 strings or Python 2 unicode objects.
If all string responses from a client should be decoded, the user can specify decode_responses=True to StrictRedis.__init__. In this case, any Redis command that returns a string type will be decoded with the encoding specified.
API Reference
Please refer to YugaByte API Refernce for details on the commmands that Yugabyte’s YEDIS end point supports. For other use cases, the official Redis command documentation does a great job of explaining each command in detail.
yedis is forked off redis-py, please refer to https://github.com/andymccurdy/redis-py for the details of the implementation and limitations.
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
Built Distributions
Hashes for yedis-2.10.6.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1a552ab5e2c49c6b0461b35ceb767d0a92b2401db7a9d2b25a8200737069a84 |
|
MD5 | 2a8427f27ef9c82b262380583f120811 |
|
BLAKE2b-256 | bc00d966014ea4772ea702b12d377290f525892a0489efea873e6530929ae0e5 |