Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | update documents for set() | laixintao | 2017-08-04 | 1 | -4/+4 | |
| | | | ||||||
* | | | Merge pull request #888 from categulario/bugfix/geopos-empty-pos | Andy McCurdy | 2017-08-14 | 1 | -1/+2 | |
|\ \ \ | | | | | | | | | fix problem when using geopos on unexistent hash member | |||||
| * | | | pep8 | Abraham Toriz | 2017-08-14 | 1 | -1/+2 | |
| | | | | ||||||
| * | | | keep style | Abraham Toriz | 2017-08-10 | 1 | -3/+1 | |
| | | | | ||||||
| * | | | fix problem when using geopos on unexistent hash member | Abraham Toriz | 2017-08-10 | 1 | -1/+3 | |
| |/ / | ||||||
* | | | Merge branch 'master' of github.com:andymccurdy/redis-py | Andy McCurdy | 2017-08-14 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Merge pull request #862 from Arctice/patch-1 | Andy McCurdy | 2017-08-01 | 1 | -1/+1 | |
| |\ \ | | | | | | | | | minor docstring typo | |||||
| | * | | typo fix | Arctice | 2017-05-26 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | add an Encoder object responsible for encoding/decoding bytes and strings | Andy McCurdy | 2017-08-02 | 2 | -74/+70 | |
|/ / / | | | | | | | | | | this simplifies multiple places that needs to encode and decode values | |||||
* | | | propery encode the script before getting the sha1 value | Andy McCurdy | 2017-07-31 | 1 | -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 McCurdy | 2017-07-31 | 1 | -16/+8 | |
|\ \ \ | ||||||
| * | | | make register_scripts use the single string form of the SCRIPT (EXISTS|LOAD) ↵ | Ben Greenberg | 2017-06-16 | 1 | -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 Greenberg | 2017-06-16 | 1 | -7/+3 | |
| | | | | | | | | | | | | | | | | BasePipeline.scripts | |||||
| * | | | encode the SHA1 digest so that it matches the return type of script_load in ↵ | Ben Greenberg | 2017-06-15 | 1 | -1/+4 | |
| | | | | | | | | | | | | | | | | Python 3 | |||||
| * | | | Encode script string before hashing. Remove the "if not script.sha" block ↵ | Ben Greenberg | 2017-06-15 | 1 | -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 instantiation | Ben Greenberg | 2017-06-14 | 1 | -1/+2 | |
| |/ / | ||||||
* | | | added get_encoding() to ConnectionPool | Andy McCurdy | 2017-07-31 | 2 | -7/+14 | |
| | | | ||||||
* | | | Merge pull request #877 from twz915/patch-1 | Andy McCurdy | 2017-07-31 | 1 | -2/+2 | |
|\ \ \ | | | | | | | | | change the error order of geo point | |||||
| * | | | change the error order of position | WeizhongTu | 2017-07-17 | 1 | -2/+2 | |
| |/ / | | | | | | | | | | | | | `GEOADD` needs `lon`, `lat` in order, not the reverse `GEOPOS` returns `longitude`, `latitude` | |||||
* | | | Merge branch 'pr/879' | Andy McCurdy | 2017-07-31 | 1 | -3/+10 | |
|\ \ \ | ||||||
| * | | | pep8 | Andy McCurdy | 2017-07-31 | 1 | -1/+4 | |
| | | | | ||||||
| * | | | Implement HSTRLEN command | Aleksandr Putilin | 2017-07-21 | 1 | -3/+7 | |
| | | | | ||||||
* | | | | Merge pull request #871 from anisjonischkeit/add_touch_command | Andy McCurdy | 2017-07-31 | 1 | -0/+7 | |
|\ \ \ \ | | | | | | | | | | | added TOUCH command to StrictRedis | |||||
| * | | | | fixed line too long pep8 error | Anis Jonischkeit | 2017-06-21 | 1 | -1/+2 | |
| | | | | | ||||||
| * | | | | added touch to StrictRedis | Anis Jonischkeit | 2017-06-21 | 1 | -0/+6 | |
| | |/ / | |/| | | ||||||
* | | | | [bugfix] Fix srandmember(key, 0) returns 1 element bug | Alex Wang | 2017-07-24 | 1 | -1/+1 | |
| |/ / |/| | | ||||||
* | | | Fix #878 | Lorenzo | 2017-07-19 | 1 | -1/+1 | |
| | | | ||||||
* | | | Improve if statement throwing KeyError | Lorenzo | 2017-07-19 | 1 | -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/master | Andy McCurdy | 2017-05-08 | 1 | -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 0 | huangqiyin | 2017-03-27 | 1 | -1/+1 | |
| | | | ||||||
| * | | fixed can't raise invalid expire time when set ex param is 0 | huangqiyin | 2017-03-27 | 1 | -1/+1 | |
| | | | ||||||
* | | | change order of lon-lat in geoadd help text | Abraham Toriz Cruz | 2017-04-29 | 1 | -1/+1 | |
|/ / | ||||||
* | | Fix PEP8 issues. | Seth M. Larson | 2017-03-23 | 1 | -1/+1 | |
| | | ||||||
* | | Implement review comments | Seth M. Larson | 2017-03-23 | 1 | -2/+3 | |
| | | ||||||
* | | InterruptedError is not defined in Python 2 | Seth M. Larson | 2017-03-23 | 1 | -2/+11 | |
| | | | | | | Fixes #845 | |||||
* | | Merge pull request #831 from AngusP/master | Andy McCurdy | 2017-02-05 | 1 | -2/+2 | |
|\ \ | | | | | | | Add pattern support to PUBSUB CHANNELS (minor, fix) | |||||
| * | | Add pattern support to PUBSUB CHANNELS | AngusP | 2017-02-04 | 1 | -2/+2 | |
| | | | | | | | | | Should have been added in #819 | |||||
* | | | Merge pull request #801 from PowerDNS/nit | Andy McCurdy | 2017-01-29 | 1 | -2/+2 | |
|\ \ \ | |/ / |/| | | insert missing word | |||||
| * | | insert missing word | Peter van Dijk | 2016-11-15 | 1 | -2/+2 | |
| | | | ||||||
* | | | Add PUBSUB docs to README | AngusP | 2017-01-24 | 1 | -1/+2 | |
| | | | ||||||
* | | | Clarified docstrings for pubsub_numsub and pubsub_channels | AngusP | 2017-01-24 | 1 | -2/+2 | |
| | | | ||||||
* | | | Implement PUBSUB * commands | AngusP | 2017-01-24 | 1 | -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 typo | Andy McCurdy | 2016-11-08 | 1 | -1/+1 | |
| | | ||||||
* | | Fixed typos in docs | Pramod Bisht | 2016-09-21 | 1 | -8/+8 | |
| | | ||||||
* | | Merge pull request #645 from cvrebert/redis-url | Andy McCurdy | 2016-09-06 | 2 | -4/+12 | |
|\ \ | | | | | | | Link to redis:// & rediss:// scheme IANA registrations in docs | |||||
| * | | Link to redis:// & rediss:// scheme IANA registrations in docs | Chris Rebert | 2015-08-13 | 2 | -4/+12 | |
| | | | ||||||
* | | | Fix transposition of GEORADIUS arguments | Alex DeBrie | 2016-07-10 | 1 | -2/+2 | |
| | | | ||||||
* | | | Merge pull request #698 from mumumu/add_replace_option_to_restore_command | Andy McCurdy | 2016-06-15 | 1 | -2/+5 | |
|\ \ \ | | | | | | | | | implemented REPLACE modifier of restore command | |||||
| * | | | - added replace option to restore command | Yoshinari Takaoka | 2015-12-28 | 1 | -2/+5 | |
| | | | | ||||||
* | | | | Merge pull request #747 from pfreixes/geo_commands | Andy McCurdy | 2016-06-14 | 1 | -3/+172 | |
|\ \ \ \ | | | | | | | | | | | Implemented support for the GEO commands for Redis 3.2.0 |