PEP 3156 implementation of the redis protocol.
Project description
(ported from asyncio-redis)
Supports
CPython 2.7, 3.3-3.5
PyPy
PyPy3
Description
Redis client for the PEP 3156 Python event loop ported to Trollius.
This Redis library is a completely asynchronous, non-blocking client for a Redis server. It depends on trollius (asyncio compatible for PEP 3156). It supports Python 2 and 3 Trollius-using developers.
If you’re new to asyncio, it can be helpful to check out the asyncio documentation first.
To see the original awesome driver that I ported from, I advise you to take a look at Jonathan Slenders asyncio-redis.
Features
Works for the trollius asyncio-compatible (PEP3156) event loop
No dependencies except trollius
Connection pooling
Automatic conversion from unicode (Python) to bytes (inside Redis.)
Bytes and str protocols.
Completely tested
Blocking calls and transactions supported
Streaming of some multi bulk replies
Pubsub support
Installation
pip install trollius-redis
Documentation
View documentation at read-the-docs
The connection class
A trollius_redis.Connection instance will take care of the connection and will automatically reconnect, using a new transport when the connection drops. This connection class also acts as a proxy to a trollius_redis.RedisProtocol instance; any Redis command of the protocol can be called directly at the connection.
import trollius
from trollius import From
import trollius_redis
@trollius.coroutine
def example():
# Create Redis connection
connection = yield From(trollius_redis.Connection.create(host=u'localhost', port=6379))
# Set a key
yield From(connection.set(u'my_key', u'my_value'))
# When finished, close the connection.
connection.close()
if __name__ == '__main__':
loop = trollius.get_event_loop()
loop.run_until_complete(example())
Connection pooling
Requests will automatically be distributed among all connections in a pool. If a connection is blocking because of –for instance– a blocking rpop, another connection will be used for new commands.
import trollius
from trollius import From
import trollius_redis
@trollius.coroutine
def example():
# Create Redis connection
connection = yield From(trollius_redis.Pool.create(host=u'localhost', port=6379, poolsize=10))
# Set a key
yield From(connection.set(u'my_key', u'my_value'))
# When finished, close the connection pool.
connection.close()
Transactions example
import trollius
from trollius import From
import trollius_redis
@trollius.coroutine
def example():
# Create Redis connection
connection = yield From(trollius_redis.Pool.create(host=u'localhost', port=6379, poolsize=10))
# Create transaction
transaction = yield From(connection.multi())
# Run commands in transaction (they return future objects)
f1 = yield From(transaction.set(u'key', u'value'))
f2 = yield From(transaction.set(u'another_key', u'another_value'))
# Commit transaction
yield From(transaction.execute())
# Retrieve results
result1 = yield From(f1)
result2 = yield From(f2)
# When finished, close the connection pool.
connection.close()
It’s recommended to use a large enough poolsize. A connection will be occupied as long as there’s a transaction running in there.
Pubsub example
import trollius
from trollius import From
import trollius_redis
@trollius.coroutine
def example():
# Create connection
connection = yield From(trollius_redis.Connection.create(host=u'localhost', port=6379))
# Create subscriber.
subscriber = yield From(connection.start_subscribe())
# Subscribe to channel.
yield From(subscriber.subscribe([u'our-channel']))
# Inside a while loop, wait for incoming events.
while True:
reply = yield From(subscriber.next_published())
print(u'Received: ', repr(reply.value), u'on channel', reply.channel)
# When finished, close the connection.
connection.close()
LUA Scripting example
import trollius
from trollius import From
import trollius_redis
code = \
u"""
local value = redis.call('GET', KEYS[1])
value = tonumber(value)
return value * ARGV[1]
"""
@trollius.coroutine
def example():
connection = yield From(trollius_redis.Connection.create(host=u'localhost', port=6379))
# Set a key
yield From(connection.set(u'my_key', u'2'))
# Register script
multiply = yield From(connection.register_script(code))
# Run script
script_reply = yield From(multiply.run(keys=[u'my_key'], args=[u'5']))
result = yield From(script_reply.return_value())
print(result) # prints 2 * 5
# When finished, close the connection.
connection.close()
Example using the Protocol class
import trollius
from trollius import From
import trollius_redis
@trollius.coroutine
def example():
loop = trollius.get_event_loop()
# Create Redis connection
transport, protocol = yield From(loop.create_connection(
trollius_redis.RedisProtocol, u'localhost', 6379))
# Set a key
yield From(protocol.set(u'my_key', u'my_value'))
# Get a key
result = yield From(protocol.get(u'my_key'))
print(result)
# Close transport when finished.
transport.close()
if __name__ == '__main__':
trollius.get_event_loop().run_until_complete(example())
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
Built Distribution
File details
Details for the file trollius_redis-0.1.4.tar.gz
.
File metadata
- Download URL: trollius_redis-0.1.4.tar.gz
- Upload date:
- Size: 32.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dea58cd72ccfd0aecb6d0f4566ae695fc074eadb4cf7c4df8daabefaf5f57b4c |
|
MD5 | d3c48961e733fd0cc7185243b0a8ddae |
|
BLAKE2b-256 | 3af8a29a1956191faf6b55880dd1a584174735ff250adc655bb11dd759b13220 |
File details
Details for the file trollius_redis-0.1.4-py2.py3-none-any.whl
.
File metadata
- Download URL: trollius_redis-0.1.4-py2.py3-none-any.whl
- Upload date:
- Size: 35.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be382570abc71d6bec34148521bb63a430fa66b7d71f2c7c49dc5aaabc7dd32d |
|
MD5 | b677183ab7b82482d7d4aa69e0b11f5c |
|
BLAKE2b-256 | 16f2196357dc53eb212a8e45ee996ccf80302506f68026a1c0585f8f310fed90 |