summaryrefslogtreecommitdiff
path: root/redis
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Fix lua lockingRobert Kopaczewski2014-12-101-8/+4
| | |
| * | Atomic redis.set when acquiring a lockRobert Kopaczewski2014-12-101-9/+15
| | |
* | | moving RELEASE to the appropriate placeAndy McCurdy2017-10-131-9/+0
| | |
* | | notes on release procedureAndy McCurdy2017-10-131-0/+9
| | |
* | | Added number of members to be popped from set, by spop commandAlireza2017-10-091-2/+3
| | |
* | | clientlist response, client_name value might contain the '=' character, in ↵swilly222017-09-221-1/+2
| | | | | | | | | | | | that case the response parser will fail
* | | Version 2.10.6, finally...2.10.6Andy McCurdy2017-08-161-1/+1
| | |
* | | 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
| | | |
* | | | Merge pull request #888 from categulario/bugfix/geopos-empty-posAndy McCurdy2017-08-141-1/+2
|\ \ \ \ | | | | | | | | | | 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-101-1/+3
| |/ / /
* | | | Merge branch 'master' of github.com:andymccurdy/redis-pyAndy McCurdy2017-08-141-1/+1
|\ \ \ \ | |/ / /
| * | | Merge pull request #862 from Arctice/patch-1Andy McCurdy2017-08-011-1/+1
| |\ \ \ | | | | | | | | | | minor docstring typo
| | * | | typo fixArctice2017-05-261-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-311-16/+8
|\ \ \ \
| * | | | 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
| * | | | encode the SHA1 digest so that it matches the return type of script_load in ↵Ben Greenberg2017-06-151-1/+4
| | | | | | | | | | | | | | | | | | | | Python 3
| * | | | 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 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`
* | | | Merge branch 'pr/879'Andy McCurdy2017-07-311-3/+10
|\ \ \ \
| * | | | pep8Andy McCurdy2017-07-311-1/+4
| | | | |
| * | | | Implement HSTRLEN commandAleksandr Putilin2017-07-211-3/+7
| | | | |
* | | | | 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
| | |/ / / | |/| | |
* | | | | [bugfix] Fix srandmember(key, 0) returns 1 element bugAlex Wang2017-07-241-1/+1
| |/ / / |/| | |
* | | | Fix #878Lorenzo2017-07-191-1/+1
| | | |
* | | | Improve if statement throwing KeyErrorLorenzo2017-07-191-1/+1
|/ / / | | | | | | At line 210, if WITHSCORES is not specified within `execute_command()`, this line used to throw a `KeyError` because the relative key in `options` is not present. Solution: this PR add a check on the key 'withscores' before the key is accessed.
* | | Merge pull request #848 from hqy/masterAndy McCurdy2017-05-081-2/+2
|\ \ \ | | | | | | | | fixed can't raise invalid expire time when set ex param is 0
| * | | fix can't raise invalid expire time when set px param is 0huangqiyin2017-03-271-1/+1
| | | |
| * | | fixed can't raise invalid expire time when set ex param is 0huangqiyin2017-03-271-1/+1
| | | |
* | | | change order of lon-lat in geoadd help textAbraham Toriz Cruz2017-04-291-1/+1
|/ / /
* | | Fix PEP8 issues.Seth M. Larson2017-03-231-1/+1
| | |
* | | Implement review commentsSeth M. Larson2017-03-231-2/+3
| | |
* | | InterruptedError is not defined in Python 2Seth M. Larson2017-03-231-2/+11
| | | | | | | | | Fixes #845
* | | Merge pull request #831 from AngusP/masterAndy McCurdy2017-02-051-2/+2
|\ \ \ | | | | | | | | Add pattern support to PUBSUB CHANNELS (minor, fix)
| * | | Add pattern support to PUBSUB CHANNELSAngusP2017-02-041-2/+2
| | | | | | | | | | | | Should have been added in #819
* | | | Merge pull request #801 from PowerDNS/nitAndy McCurdy2017-01-291-2/+2
|\ \ \ \ | |/ / / |/| | | insert missing word
| * | | insert missing wordPeter van Dijk2016-11-151-2/+2
| | | |
* | | | Add PUBSUB docs to READMEAngusP2017-01-241-1/+2
| | | |
* | | | Clarified docstrings for pubsub_numsub and pubsub_channelsAngusP2017-01-241-2/+2
| | | |
* | | | Implement PUBSUB * commandsAngusP2017-01-241-0/+23
|/ / / | | | | | | | | | | | | 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