txredisapi
txredisapi copied to clipboard
non-blocking redis client for python twisted
there is this line HMSET replaces old values with new values. in mset function in which is MSET command executed this comment looks not correct to me
txredisapi ( trying the master branch which has the fix for pipeline pool) hangs when there are greater number of concurrent pipeline commands executed than the maximum connection pool size....
## Issue I had some issues with ZADD not actually adding values to the set [if NX was set on redis > 3.0.2](https://redis.io/commands/zadd#zadd-options-redis-302-or-greater). When XX, NX, CH, or INCR was...
This code either hangs (py2) or crashes with RecursionError (py3): ``` python from __future__ import print_function @defer.inlineCallbacks def main(): redis = txredisapi.lazyConnection() redis.set('c', 0) yield defer.gatherResults( redis.incr('c').addCallback(print) for i in...
TimeoutMixin's setTimeout is never called so timeouts are effectively disabled.
I made this object for my own use that mimics the one from the redis-py driver: https://bitbucket.org/wanderua/wanderu.bamboo/raw/74aeda47a1764284d137fec437d73eb8047d5b98/wanderu/bamboo/txscript.py That's from an open-source project that I am making for using Redis as...
I'd like to be able to implement the CLIENT SETNAME and GETNAME operations, but it doesn't work well with a connection pool. What would be the current recommended way to...
Call errback with ConnectionError of deferreds waiting for connection in ConnectionHandler's wrapper when all attempts for connecting fail.
After upgrading from 1.2 to 1.3 I constantly get errors across `self.factory`. I can't run txredisapi tests because of https://github.com/d11wtq/dockerpty/issues/7, but test cases are extremly simple. ``` python import txredisapi...
With the code below when __testRedis is called after __establishConnectionPool where an invalid host/port configuration is used only the 'now' time is printed, print x is never reached. ``` @staticmethod...