asyncio (PEP 3156) Redis client library.
hiredis parser | Yes |
Pure-python parser | TBD |
Low-level & High-level APIs | Yes |
Connections Pool | Yes |
Pipelining support | Yes |
Pub/Sub support | Yes |
SSL/TLS support | Yes |
Redis Cluster support | WIP |
Trollius (python 2.7) | No |
Tested python versions | 3.3, 3.4, 3.5 |
Tested for Redis server | 2.6, 2.8, 3.0, 3.2 |
Support for dev Redis server | through low-level API |
http://aioredis.readthedocs.io/
Simple low-level interface:
import asyncio
import aioredis
loop = asyncio.get_event_loop()
async def go():
conn = await aioredis.create_connection(
('localhost', 6379), loop=loop)
await conn.execute('set', 'my-key', 'value')
val = await conn.execute('get', 'my-key')
print(val)
conn.close()
await conn.wait_closed()
loop.run_until_complete(go())
# will print 'value'
Simple high-level interface:
import asyncio
import aioredis
loop = asyncio.get_event_loop()
async def go():
redis = await aioredis.create_redis(
('localhost', 6379), loop=loop)
await redis.set('my-key', 'value')
val = await redis.get('my-key')
print(val)
redis.close()
await redis.wait_closed()
loop.run_until_complete(go())
# will print 'value'
Connections pool:
import asyncio
import aioredis
loop = asyncio.get_event_loop()
async def go():
pool = await aioredis.create_pool(
('localhost', 6379),
minsize=5, maxsize=10,
loop=loop)
with await pool as redis: # high-level redis API instance
await redis.set('my-key', 'value')
print(await redis.get('my-key'))
# graceful shutdown
pool.close()
await pool.wait_closed()
loop.run_until_complete(go())
Note
hiredis is preferred requirement. Pure-python fallback protocol parser is TBD.
aio-libs google group: https://groups.google.com/forum/#!forum/aio-libs
The aioredis is offered under MIT license.