summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge branch 'pr/885'Andy McCurdy2017-10-091-0/+9
|\ \ \ | |/ / |/| |
| * | additional info regarding decode_responses=TrueAndy McCurdy2017-10-091-2/+8
| | |
| * | update grammarnorman2017-10-091-1/+1
| | |
| * | clarified the documentationnsantiago27192017-08-251-1/+4
| | |
| * | add note on readme filensantiago27192017-07-311-1/+1
| | |
* | | Merge pull request #904 from swilly22/client_list_response_parsingAndy McCurdy2017-09-222-1/+10
|\ \ \ | | | | | | | | clientlist response, client_name value might contain the '=' character, in that case response parser will fail
| * | | clientlist response, client_name value might contain the '=' character, in ↵swilly222017-09-222-1/+10
|/ / / | | | | | | | | | that case the response parser will fail
* | | Merge pull request #897 from davidszotten/extras_require_hiredisAndy McCurdy2017-09-061-0/+5
|\ \ \ | | | | | | | | add extras_require with hiredis
| * | | add extras_require with hiredisDavid Szotten2017-09-061-0/+5
|/ / / | | | | | | | | | enables `pip install redis[hiredis]`
* | | Version 2.10.6, finally...2.10.6Andy McCurdy2017-08-161-1/+1
| | |
* | | changelogAndy McCurdy2017-08-161-1/+29
| | |
* | | Merge pull request #810 from r0fls/zcount-exclusive-rangeAndy McCurdy2017-08-161-0/+2
|\ \ \ | | | | | | | | test zcount exclusive range
| * | | test zcount exclusive rangeRaphael Deem2016-12-221-0/+2
| | | |
* | | | Merge pull request #887 from laixintao/masterAndy McCurdy2017-08-161-4/+4
|\ \ \ \ | | | | | | | | | | update documents for set()
| * | | | update documents for set()laixintao2017-08-041-4/+4
| | | | |
* | | | | GEOPOS returns different values from redis 3.2 to redis 4.0Andy McCurdy2017-08-152-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | update test suite to test the appropriate return type based on server version
* | | | | Merge pull request #888 from categulario/bugfix/geopos-empty-posAndy McCurdy2017-08-142-1/+6
|\ \ \ \ \ | | | | | | | | | | | | fix problem when using geopos on unexistent hash member
| * | | | | pep8Abraham Toriz2017-08-141-1/+2
| | | | | |
| * | | | | keep styleAbraham Toriz2017-08-101-3/+1
| | | | | |
| * | | | | fix problem when using geopos on unexistent hash memberAbraham Toriz2017-08-102-1/+7
| |/ / / /
* | | | | Merge branch 'master' of github.com:andymccurdy/redis-pyAndy McCurdy2017-08-142-2/+2
|\ \ \ \ \ | |/ / / /
| * | | | Merge pull request #862 from Arctice/patch-1Andy McCurdy2017-08-011-1/+1
| |\ \ \ \ | | | | | | | | | | | | minor docstring typo
| | * | | | typo fixArctice2017-05-261-1/+1
| | | | | |
| * | | | | Merge pull request #859 from hootnot/doc-fixAndy McCurdy2017-08-011-1/+1
| |\ \ \ \ \ | | | | | | | | | | | | | | REDIS_CALLBACKS should be RESPONSE_CALLBACKS
| | * | | | | REDIS_CALLBACKS should be RESPONSE_CALLBACKShootnot2017-05-171-1/+1
| | |/ / / /
* | | | | | add an Encoder object responsible for encoding/decoding bytes and stringsAndy McCurdy2017-08-022-74/+70
|/ / / / / | | | | | | | | | | | | | | | this simplifies multiple places that needs to encode and decode values
* | | | | propery encode the script before getting the sha1 valueAndy McCurdy2017-07-311-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | it's possible a Lua script contains unicode characters. use the client's encoding options to obtain the byte representation of the script.
* | | | | Merge branch 'pr/867'Andy McCurdy2017-07-312-30/+28
|\ \ \ \ \
| * | | | | make register_scripts use the single string form of the SCRIPT (EXISTS|LOAD) ↵Ben Greenberg2017-06-161-6/+3
| | | | | | | | | | | | | | | | | | | | | | | | commands so that they will be parsed the same way as in script_load and script_exists
| * | | | | Remove script_load_for_pipeline and directly add Script object to ↵Ben Greenberg2017-06-161-7/+3
| | | | | | | | | | | | | | | | | | | | | | | | BasePipeline.scripts
| * | | | | Fix icnorrect testBen Greenberg2017-06-151-1/+2
| | | | | |
| * | | | | encode the SHA1 digest so that it matches the return type of script_load in ↵Ben Greenberg2017-06-151-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | Python 3
| * | | | | update tests to reflect the fact that the script sha is precalculatedBen Greenberg2017-06-151-13/+18
| | | | | |
| * | | | | Encode script string before hashing. Remove the "if not script.sha" block ↵Ben Greenberg2017-06-151-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | from script_load_for_pipeline because its condition will not be true, and because scripts are loaded during execute()
| * | | | | Precalculate sha1 of the script on Script instantiationBen Greenberg2017-06-141-1/+2
| |/ / / /
* | | | | added get_encoding() to ConnectionPoolAndy McCurdy2017-07-312-7/+14
| | | | |
* | | | | Merge branch 'master' of github.com:andymccurdy/redis-pyAndy McCurdy2017-07-311-2/+2
|\ \ \ \ \
| * \ \ \ \ Merge pull request #877 from twz915/patch-1Andy McCurdy2017-07-311-2/+2
| |\ \ \ \ \ | | | | | | | | | | | | | | change the error order of geo point
| | * | | | | change the error order of positionWeizhongTu2017-07-171-2/+2
| | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | `GEOADD` needs `lon`, `lat` in order, not the reverse `GEOPOS` returns `longitude`, `latitude`
* | | | | | skip HSTRLEN tests if server < 3.2.0Andy McCurdy2017-07-311-0/+1
|/ / / / /
* | | | | Merge branch 'pr/879'Andy McCurdy2017-07-312-3/+15
|\ \ \ \ \
| * | | | | pep8Andy McCurdy2017-07-311-1/+4
| | | | | |
| * | | | | Implement HSTRLEN commandAleksandr Putilin2017-07-212-3/+12
| | | | | |
* | | | | | Merge pull request #871 from anisjonischkeit/add_touch_commandAndy McCurdy2017-07-311-0/+7
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | added TOUCH command to StrictRedis
| * | | | | fixed line too long pep8 errorAnis Jonischkeit2017-06-211-1/+2
| | | | | |
| * | | | | added touch to StrictRedisAnis Jonischkeit2017-06-211-0/+6
| | |/ / / | |/| | |
* | | | | Merge pull request #882 from a1exwang/masterAndy McCurdy2017-07-241-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | [bugfix] Fix srandmember(key, 0) returns 1 element bug
| * | | | [bugfix] Fix srandmember(key, 0) returns 1 element bugAlex Wang2017-07-241-1/+1
|/ / / /
* | | | Merge pull request #878 from Mec-iS/patch-1Andy McCurdy2017-07-191-1/+1
|\ \ \ \ | |/ / / |/| | | Improve if statement throwing KeyError
| * | | Fix #878Lorenzo2017-07-191-1/+1
| | | |