Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | xread: block parameter may be set to zero, to block indefinitely | Roey Prat | 2018-10-28 | 1 | -1/+1 | |
| | | | ||||||
| * | | Added support for Streams | Nick Farrell | 2018-10-28 | 1 | -0/+62 | |
| |/ | | | | | | | | | | | | | | | This includes: XADD, XREAD, XRANGE, XREVRANGE, XLEN. See http://antirez.com/news/114 for more information. Consumer groups is not yet supported, as its details are still being finalised upstream. | |||||
* | | Remove reason arg from client_unblock. Use boolean 'error' arg instead. | Roey Prat | 2018-11-04 | 1 | -4/+2 | |
| | | ||||||
* | | Adds unblock reason support | Itamar Haber | 2018-10-05 | 1 | -1/+5 | |
| | | | | | | | | Signed-off-by: Itamar Haber <itamar@redislabs.com> | |||||
* | | Adds CLIENT UNBLOCK | Itamar Haber | 2018-10-05 | 1 | -0/+5 | |
| | | | | | | | | Signed-off-by: Itamar Haber <itamar@redislabs.com> | |||||
* | | Adds support for CLIENT ID | Itamar Haber | 2018-10-05 | 1 | -0/+4 | |
|/ | | | | Signed-off-by: Itamar Haber <itamar@redislabs.com> | |||||
* | wrote tests for multi output spop command | Alireza | 2017-10-10 | 1 | -0/+11 | |
| | ||||||
* | clientlist response, client_name value might contain the '=' character, in ↵ | swilly22 | 2017-09-22 | 1 | -0/+8 | |
| | | | | that case the response parser will fail | |||||
* | Merge pull request #810 from r0fls/zcount-exclusive-range | Andy McCurdy | 2017-08-16 | 1 | -0/+2 | |
|\ | | | | | test zcount exclusive range | |||||
| * | test zcount exclusive range | Raphael Deem | 2016-12-22 | 1 | -0/+2 | |
| | | ||||||
* | | GEOPOS returns different values from redis 3.2 to redis 4.0 | Andy McCurdy | 2017-08-15 | 2 | -2/+12 | |
| | | | | | | | | | | update test suite to test the appropriate return type based on server version | |||||
* | | fix problem when using geopos on unexistent hash member | Abraham Toriz | 2017-08-10 | 1 | -0/+4 | |
| | | ||||||
* | | Merge branch 'pr/867' | Andy McCurdy | 2017-07-31 | 1 | -14/+20 | |
|\ \ | ||||||
| * | | Fix icnorrect test | Ben Greenberg | 2017-06-15 | 1 | -1/+2 | |
| | | | ||||||
| * | | update tests to reflect the fact that the script sha is precalculated | Ben Greenberg | 2017-06-15 | 1 | -13/+18 | |
| | | | ||||||
* | | | skip HSTRLEN tests if server < 3.2.0 | Andy McCurdy | 2017-07-31 | 1 | -0/+1 | |
| | | | ||||||
* | | | Implement HSTRLEN command | Aleksandr Putilin | 2017-07-21 | 1 | -0/+5 | |
|/ / | ||||||
* | | Fix warning during test | Jon Dufresne | 2017-01-28 | 1 | -1/+1 | |
| | | | | | | | | | | | | Fixes warning output: DeprecationWarning: "charset" is deprecated. Use "encoding" instead | |||||
* | | Add minimum Redis server version to TestPubSubPubSubSubcommands | AngusP | 2017-01-24 | 1 | -0/+4 | |
| | | ||||||
* | | Add PUBSUB docs to README | AngusP | 2017-01-24 | 1 | -1/+0 | |
| | | ||||||
* | | Implement PUBSUB * commands | AngusP | 2017-01-24 | 1 | -1/+27 | |
|/ | | | | | PUBSUB CHANNELS, PUBSUB NUMSUB and PUBSUB NUMPAT are implemented as per https://redis.io/commands/pubsub and suggested in Issue #526. Implemented test class `TestPubSubPubSubSubcommands` to test added commands. Tested against python 3.4.2 and python 2.7.5 | |||||
* | Merge pull request #698 from mumumu/add_replace_option_to_restore_command | Andy McCurdy | 2016-06-15 | 1 | -0/+10 | |
|\ | | | | | implemented REPLACE modifier of restore command | |||||
| * | - added replace option to restore command | Yoshinari Takaoka | 2015-12-28 | 1 | -0/+10 | |
| | | ||||||
* | | Merge pull request #747 from pfreixes/geo_commands | Andy McCurdy | 2016-06-14 | 1 | -0/+166 | |
|\ \ | | | | | | | Implemented support for the GEO commands for Redis 3.2.0 | |||||
| * | | Fixed issues regarding Python3 | pfreixes | 2016-06-14 | 1 | -1/+1 | |
| | | | ||||||
| * | | Geo Commands, return Python native types | Pau Freixes | 2016-06-14 | 1 | -18/+51 | |
| | | | ||||||
| * | | Implemented support for the GEO commands for Redis 3.2.0 | pfreixes | 2016-05-16 | 1 | -0/+133 | |
| | | | | | | | | | | | | | | | The following commands have been implemented GEOADD, GEODIST, GEOHASH, GEOPOS, GEORADIUS, GEORADIUSBYMEMBER. | |||||
* | | | pubsub: improve error reporting if caller forgets to subscribe | Greg Ward | 2016-06-12 | 1 | -0/+8 | |
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | This is an easy mistake to make -- at least, I keep making it. It formerly resulted in a confusing crash, "AttributeError: 'NoneType' object has no attribute 'can_read'", from parse_response(). I have had to dig into the redis-py source code more than once to figure out what went wrong. With this patch, it still crashes, but with a clearer error that clarifies what the calling code forgot to do. Fixes issue #716. | |||||
* | | PEP8 fixes | Tim Savage | 2016-03-29 | 1 | -3/+11 | |
| | | ||||||
* | | Extend ConnectionPool.to_url to parse querystring arguments to correct type. | Tim Savage | 2016-03-29 | 1 | -1/+38 | |
| | | | | | | | | | | Previously if a value for socket_timeout was supplied as part fo the URL an error would be raised when a socket was created with an invalid type, this change fixes that by parsing `socket_timeout`, `socket_connect_timeout` to float values. In addition the boolean values `socket_keepalive` and `retry_on_timeout` are parsed to bool types taking into account the usage of True/False, Yes/No strings. | |||||
* | | pep8 code | iandyh | 2016-02-19 | 2 | -12/+15 | |
| | | ||||||
* | | format long mocked response string | iandyh | 2016-02-18 | 1 | -2/+23 | |
| | | ||||||
* | | redis cluster commands | iandyh | 2015-12-01 | 2 | -0/+94 | |
|/ | ||||||
* | FIX #651 try next Sentinel node on TimeoutError | Bo Lopker | 2015-11-27 | 1 | -0/+22 | |
| | ||||||
* | fix getitem syntax for redis get when value is the empty string | Javier Candeira | 2015-11-25 | 1 | -0/+4 | |
| | ||||||
* | -added zrevrangebylex | Christian Bodt | 2015-10-20 | 1 | -0/+11 | |
| | ||||||
* | Fix tests under Redis 3.x; we can be of an "embedded string" format now. | Chris Lamb | 2015-08-18 | 1 | -1/+1 | |
| | | | | Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk> | |||||
* | support multiple keys for pfcount call | Chris Wilkes | 2015-05-22 | 1 | -0/+4 | |
| | ||||||
* | fix: Connection.encode complains when value is an object having unicode ↵ | Eric Du | 2015-05-04 | 1 | -0/+7 | |
| | | | | characters in its printable representation | |||||
* | Handle percent-encoded URLs in parsing code | Paul Keene | 2015-02-09 | 1 | -0/+45 | |
| | ||||||
* | pep8 fix | Hendrik Muhs | 2014-12-04 | 1 | -0/+1 | |
| | ||||||
* | fix pep8 | Hendrik Muhs | 2014-12-04 | 1 | -4/+5 | |
| | ||||||
* | UnicodeDecodeErrorfix unicode encode error when using pipeline in ↵ | Hendrik Muhs | 2014-12-04 | 1 | -0/+31 | |
| | | | | combination with msgpack and lua | |||||
* | fix tests | Nickolai Novik | 2014-06-21 | 1 | -4/+4 | |
| | ||||||
* | bitpos command implementation | Nickolai Novik | 2014-06-21 | 1 | -0/+22 | |
| | ||||||
* | lock tests: change lock.token to lock.local.token | wil paredes | 2014-06-05 | 1 | -3/+3 | |
| | ||||||
* | add a lock implementation using Lua scripts. | Andy McCurdy | 2014-06-01 | 1 | -25/+85 | |
| | ||||||
* | updated Lock class: | Andy McCurdy | 2014-06-01 | 1 | -39/+85 | |
| | | | | | * now uses unique string tokens to claim lock ownership * added extend() method to extend the timeout on an already acquired lock | |||||
* | move Lock class to it's own module | Andy McCurdy | 2014-05-31 | 1 | -1/+1 | |
| | ||||||
* | consistent naming, #446 | Andy McCurdy | 2014-05-14 | 1 | -3/+5 | |
| |