tornado-redis icon indicating copy to clipboard operation
tornado-redis copied to clipboard

Asynchronous Redis client that works within Tornado IO loop.

Results 37 tornado-redis issues
Sort by recently updated
recently updated
newest added

I guess implementation is very similar to pub/sub and listen commands

When remote redis goes down, client will receive a on_disconnect event, and throw a ConnectionError("Socket closed on remote end") but when redis goes up, and we try to redo our...

Hi, I am writing a realtime web application with `SockJSSubscriber`. When I send a unicode string that exceed ASCII's coding range, like Chinese character, there will raise `UnicodeEncodeError` Exception on...

It'd be really helpful if a `psubscribe` method was available on `BaseSubscriber`, functioning similarly to `subscribe`.

SyncMset is much quicker than AsyncMset. Is that right? I ran the demos/benchmark/app.py and found that SyncMset is much quicker than AsyncMset. Is it work right? My logging: INFO:tornado.access:200 GET...

Return Future instances instead of calling callbacks directly. Add the support for simplified syntax: ``` python @gen.coroutine def some_method(self): ... res = yield self.redis_client.get('mykey') ... ``` instead of ``` python...