Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 644 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 644 Bytes

gevent-redis

Asynchronous Redis client that works within Gevent.

Usage

>>> import geventredis
>>> redis_client = geventredis.connect('127.0.0.1', 6379)
>>> redis_client.set('foo', 'bar')
'OK'
>>> for msg in redis_client.monitor():
       print msg
OK
1318055499.218114 "monitor"
_

Credits

gevent-redis is developed and maintained by Phus Lu

License

Apache License, Version 2.0