Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Merge branch 'pr/916' into drop26 | Andy McCurdy | 2018-11-06 | 8 | -313/+309 | |
|\ \ | ||||||
| * | | Use unicode literals throughout project | Jon Dufresne | 2018-11-03 | 5 | -304/+308 | |
| | | | | | | | | | | | | Remove workaround for handling unicode with older Pythons. | |||||
| * | | Use set literals instead of set([...]) | Jon Dufresne | 2018-11-03 | 1 | -34/+34 | |
| | | | ||||||
| * | | Remove from __future__ import with_statement | Jon Dufresne | 2018-11-03 | 8 | -8/+0 | |
| | | | | | | | | | | | | All supported Python versions support the with statement. | |||||
* | | | Merge pull request #933 from yozel/master | Andy McCurdy | 2018-11-06 | 1 | -0/+15 | |
|\ \ \ | | | | | | | | | Add support for UNLINK command | |||||
| * | | | Add support for UNLINK command | Yasin Ozel | 2017-12-01 | 1 | -0/+15 | |
| | |/ | |/| | ||||||
* | | | Merge branch 'master' into v5-client-subcommands | Andy McCurdy | 2018-11-05 | 5 | -12/+530 | |
|\ \ \ | ||||||
| * | | | add test for non-transaction pipelines as well | Andy McCurdy | 2018-11-04 | 1 | -2/+16 | |
| | | | | ||||||
| * | | | hook for graceful command failure, even in pipelines | Andy McCurdy | 2018-11-04 | 2 | -0/+15 | |
| | |/ | |/| | | | | | | | allow commands that expect 1 or more keys to fail gracefully when 0 keys are provided | |||||
| * | | Merge pull request #985 from mmaslowskicc/from-url-max-connections | Andy McCurdy | 2018-11-02 | 1 | -1/+2 | |
| |\ \ | | | | | | | | | Fix parsing max_connections URL query string parameter | |||||
| | * | | Fix parsing max_connections URL query string parameter | Michał Masłowski | 2018-05-23 | 1 | -1/+2 | |
| | |/ | | | | | | | | | | | | | Previously ConnectionPool.from_url kept it as a string, causing a 'ValueError: "max_connections" must be a positive integer'. | |||||
| * | | added MKSTREAM option to xgroup_create | Andy McCurdy | 2018-11-01 | 1 | -0/+22 | |
| | | | ||||||
| * | | remove unncessary deletes at beginning of tests | Andy McCurdy | 2018-11-01 | 1 | -8/+0 | |
| | | | ||||||
| * | | Merge pull request #1037 from itamarhaber/zpop | Andy McCurdy | 2018-11-01 | 1 | -0/+50 | |
| |\ \ | | | | | | | | | Adds support for ZPOPMAX, ZPOPMIN and their respective blocking variants | |||||
| | * | | PEP8's it | Itamar Haber | 2018-10-05 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | Signed-off-by: Itamar Haber <itamar@redislabs.com> | |||||
| | * | | Converts score from string to float | Itamar Haber | 2018-10-05 | 1 | -10/+10 | |
| | | | | | | | | | | | | | | | | Signed-off-by: Itamar Haber <itamar@redislabs.com> | |||||
| | * | | Adds BZPOPMAX and BZPOPMIN | Itamar Haber | 2018-10-05 | 1 | -0/+30 | |
| | | | | | | | | | | | | | | | | Signed-off-by: Itamar Haber <itamar@redislabs.com> | |||||
| | * | | Adds ZPOPMAX and ZPOPMIN | Itamar Haber | 2018-10-05 | 1 | -0/+20 | |
| | |/ | | | | | | | | | | Signed-off-by: Itamar Haber <itamar@redislabs.com> | |||||
| * | | fix test that breaks if other clients are connected to the redis server | Andy McCurdy | 2018-11-01 | 1 | -4/+3 | |
| | | | ||||||
| * | | python2 compat | Andy McCurdy | 2018-10-31 | 1 | -3/+3 | |
| | | | ||||||
| * | | python 2 likes binary regex hints specified as 'br' rather than 'rb' | Andy McCurdy | 2018-10-31 | 1 | -1/+1 | |
| | | | ||||||
| * | | avoid calling pytest fixtures directly since that's frowned upon | Andy McCurdy | 2018-10-31 | 2 | -5/+6 | |
| | | | ||||||
| * | | rename start/finish and start/end args to min/max on all stream commands | Andy McCurdy | 2018-10-31 | 1 | -9/+9 | |
| | | | | | | | | | | | | | | | this is consistent with the rest of the library and is clearer terminology to the end user | |||||
| * | | 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 |