summaryrefslogtreecommitdiff
path: root/redis
Commit message (Collapse)AuthorAgeFilesLines
...
| * | 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
* | docs typoAndy McCurdy2016-11-081-1/+1
| |
* | Fixed typos in docsPramod Bisht2016-09-211-8/+8
| |
* | Merge pull request #645 from cvrebert/redis-urlAndy McCurdy2016-09-062-4/+12
|\ \ | | | | | | Link to redis:// & rediss:// scheme IANA registrations in docs
| * | Link to redis:// & rediss:// scheme IANA registrations in docsChris Rebert2015-08-132-4/+12
| | |
* | | Fix transposition of GEORADIUS argumentsAlex DeBrie2016-07-101-2/+2
| | |
* | | Merge pull request #698 from mumumu/add_replace_option_to_restore_commandAndy McCurdy2016-06-151-2/+5
|\ \ \ | | | | | | | | implemented REPLACE modifier of restore command
| * | | - added replace option to restore commandYoshinari Takaoka2015-12-281-2/+5
| | | |
* | | | Merge pull request #747 from pfreixes/geo_commandsAndy McCurdy2016-06-141-3/+172
|\ \ \ \ | | | | | | | | | | Implemented support for the GEO commands for Redis 3.2.0