Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | refactor a bunch of the tests. | Andy McCurdy | 2018-10-31 | 1 | -135/+381 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - split out tests for each client function - alphabetize - make sure response callbacks return system info dicts with native string keys rather than byte strings. - make sure empty versions of commands that typically return a list return an empty list when streams or messages don't exist | |||||
| * | | reorganize stream tests | Andy McCurdy | 2018-10-31 | 1 | -114/+103 | |
| | | | ||||||
| * | | XREAD and XREADGROUP return empty lists when the server returns no messages | Roey Prat | 2018-10-31 | 1 | -1/+1 | |
| | | | ||||||
| * | | XPENDING parse response and unit test | Roey Prat | 2018-10-31 | 1 | -0/+21 | |
| | | | ||||||
| * | | fix XCLAIM to handle justid parameter correctly | Roey Prat | 2018-10-31 | 1 | -0/+3 | |
| | | | ||||||
| * | | remove code duplication | Roey Prat | 2018-10-31 | 1 | -30/+0 | |
| | | | ||||||
| * | | XREAD and XREADGROUP should take streams as a required dict arg rather than ↵ | Roey Prat | 2018-10-31 | 1 | -4/+4 | |
| | | | | | | | | | | | | kwargs | |||||
| * | | unit test for xclaim | Roey Prat | 2018-10-28 | 1 | -0/+15 | |
| | | | ||||||
| * | | allow list based iterating on XREADGROUP results | Roey Prat | 2018-10-28 | 1 | -3/+4 | |
| | | | ||||||
| * | | XADD key/value pairs of the entry should be specified as a single dict arg ↵ | Roey Prat | 2018-10-28 | 1 | -14/+14 | |
| | | | | | | | | | | | | rather than kwargs | |||||
| * | | Implements XREADGROUP | Roey Prat | 2018-10-28 | 1 | -6/+16 | |
| | | | ||||||
| * | | Implements XTRIM | Itamar Haber | 2018-10-28 | 1 | -0/+16 | |
| | | | ||||||
| * | | Implements XDEL | Itamar Haber | 2018-10-28 | 1 | -0/+14 | |
| | | | ||||||
| * | | Implements XACK | Itamar Haber | 2018-10-28 | 1 | -0/+10 | |
| | | | ||||||
| * | | Implements XINFO | Roey Prat | 2018-10-28 | 1 | -8/+10 | |
| | | | ||||||
| * | | Fixes to test_strict_xrange | Roey Prat | 2018-10-28 | 1 | -2/+2 | |
| | | | ||||||
| * | | run tests of commands added in redis 5, if redis>=5 | Roey Prat | 2018-10-28 | 1 | -4/+4 | |
| | | | ||||||
| * | | Implement XGROUP | Roey Prat | 2018-10-28 | 1 | -0/+65 | |
| | | | ||||||
| * | | 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 | 1 | -2/+7 | |
| | | | | | | | | | | 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 | |
| | | ||||||
* | | 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 | |
|/ | ||||||
* | 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 | |
| | | ||||||
* | | 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. | |||||
* | | pep8 code | iandyh | 2016-02-19 | 1 | -10/+11 | |
| | | ||||||
* | | redis cluster commands | iandyh | 2015-12-01 | 1 | -0/+50 | |
|/ | ||||||
* | 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 tests | Nickolai Novik | 2014-06-21 | 1 | -4/+4 | |
| | ||||||
* | bitpos command implementation | Nickolai Novik | 2014-06-21 | 1 | -0/+22 | |
| | ||||||
* | more love for testing on servers w/ other connected clients | Andy McCurdy | 2014-05-12 | 1 | -15/+18 | |
| | ||||||
* | be better about testing on servers where there may be other connected clients | Andy McCurdy | 2014-05-12 | 1 | -2/+4 | |
| | ||||||
* | fix expireat tests to factor in rounding time up | Andy McCurdy | 2014-05-10 | 1 | -4/+4 | |
| | ||||||
* | *SCAN cursor values are now longs (ints on Python3) rather than strings. | Andy McCurdy | 2014-05-10 | 1 | -4/+4 | |
| | | | | fixes #474. | |||||
* | unnecessary test | Andy McCurdy | 2014-05-06 | 1 | -4/+0 | |
| |