tornado-redis
tornado-redis copied to clipboard
Asynchronous Redis client that works within Tornado IO loop.
This is done to mirror the behavior of subscribe()
Class Connection constructor does not have argument for db name and password? How can I connect from Heroku to Redis Cloud? ``` class Connection(object): def __init__(self, host='localhost', port=6379, unix_socket_path=None, event_handler_proxy=None,...
When unsubscribing from pubsub channels, a reference to expired callbacks was kept. This change updates the `unsubscribe_callbacks` list to remove references once a callback has been called
Hi, I was running some tests in a Tornado web application that uses tornado-redis after a call to IOLoop.set_blocking_log_threshold() with a low value, to spot any blocking IO or slow...
Hi, I'm using tornado-redis to publish GPS locations (from a smartphone). It works fine, but after a time the messages stops to publish on Redis but the Tornado receives the...
I experienced issues if my Redis server was restarted: the list of subscribers didn't change while there was no subscription to a channel in Redis. By resetting the subscribers if...
In `tornado.concurrent` there is nice decorator `return_future`, which allows to return `Future` if _callback_ argument is None. With this decorator it is possible to use modern api: `yield f(a, b)`...
Hi, I use tornado-redis to async subscribe some chatting message, but when the server running minutes later, maybe hours or days later , the server hanging without any error reason....
HI, I am using client.hscan to stream the results from redis bucket to the client, hscan is returning a list with next cursor position and a set with keys and...