Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | | pep8 cleanup | Chris Simpson | 2016-06-12 | 1 | -0/+2 | |
| | | | | | | ||||||
| * | | | | | Cache Token objects to improve performance. | Chris Simpson | 2016-06-12 | 3 | -29/+245 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Token class now contains a cache of tokens, and each token stores its encoded value. In Python 3 this prevents encoding the Token commands (get, set, incr, etc...) repeatly. There is also a smaller performance improvement by creating fewer objects. A very basic benchmark script was also added. | |||||
| * | | | | | Merge branch 'master' of https://github.com/andymccurdy/redis-py | Chris Simpson | 2016-06-12 | 3 | -3/+15 | |
| |\ \ \ \ \ | ||||||
| * \ \ \ \ \ | Merge pull request #1 from andymccurdy/master | cjsimpson | 2016-06-09 | 3 | -5/+63 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | sync with origin | |||||
* | \ \ \ \ \ \ | Merge pull request #752 from gward/issue716 | Andy McCurdy | 2016-06-14 | 2 | -0/+12 | |
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | | pubsub: improve error reporting if caller forgets to subscribe (issue #716) | |||||
| * | | | | | | | pubsub: improve error reporting if caller forgets to subscribe | Greg Ward | 2016-06-12 | 2 | -0/+12 | |
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an easy mistake to make -- at least, I keep making it. It formerly resulted in a confusing crash, "AttributeError: 'NoneType' object has no attribute 'can_read'", from parse_response(). I have had to dig into the redis-py source code more than once to figure out what went wrong. With this patch, it still crashes, but with a clearer error that clarifies what the calling code forgot to do. Fixes issue #716. | |||||
* | | | | | | | Merge pull request #750 from carltongibson/fixes/wrap-select | Andy McCurdy | 2016-06-11 | 2 | -2/+12 | |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Wrap `select` to retry on `InterruptedError` | |||||
| * | | | | | | | Retry `select` calls on `InterruptedError` | Carlton Gibson | 2016-06-10 | 2 | -2/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref #738 | |||||
* | | | | | | | | Merge pull request #749 from carltongibson/tox/require-mock | Andy McCurdy | 2016-06-11 | 1 | -1/+3 | |
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | / / / / / | |_|/ / / / / |/| | | | | | | Specify mock requirement for tox | |||||
| * | | | | | | Specify mock requirement for tox | Carlton Gibson | 2016-06-10 | 1 | -1/+3 | |
|/ / / / / / | ||||||
* | | | | | | Merge pull request #712 from jitendranair/jitendranair-patch-1 | Andy McCurdy | 2016-06-05 | 1 | -1/+1 | |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Update README.rst | |||||
| * | | | | | | Update README.rst | Jitendra Nair | 2016-02-02 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | Missing single quote in code block | |||||
* | | | | | | | Merge pull request #743 from closeio/retry-recv-eintr | Andy McCurdy | 2016-06-05 | 2 | -4/+62 | |
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | Automatically retry EINTR for Python < 3.5 to prevent duplicate command execution | |||||
| * | | | | | | Style fixes (2) | Thomas Steinacher | 2016-05-24 | 1 | -2/+2 | |
| | | | | | | | ||||||
| * | | | | | | Style fixes | Thomas Steinacher | 2016-05-24 | 1 | -2/+3 | |
| | | | | | | | ||||||
| * | | | | | | For Python < 3.5, automatically retry EINTR | Thomas Steinacher | 2016-05-24 | 2 | -4/+61 | |
| | | | | | | | ||||||
* | | | | | | | Merge pull request #744 from youknowone/pypy-compat | Andy McCurdy | 2016-05-31 | 1 | -1/+1 | |
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | Check also `int` not only `long` for PyPy. | |||||
| * | | | | | | Check `int` also not only `long` | Jeong YunWon | 2016-05-30 | 1 | -1/+1 | |
|/ / / / / / | | | | | | | | | | | | | | | | | | | PyPy can generate an `int` instance here. | |||||
* | | | | | | Merge pull request #737 from hulu/master | Andy McCurdy | 2016-05-17 | 1 | -3/+4 | |
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | add daemon option to PubSubWorker so ctrl-c will work | |||||
| * | | | | | add daemon option to PubSubWorker so ctrl-c will work | Keith Ainsworth | 2016-05-17 | 1 | -3/+4 | |
|/ / / / / | ||||||
* | | | | | Merge pull request #723 from timsavage/master | Andy McCurdy | 2016-03-29 | 2 | -4/+82 | |
|\ \ \ \ \ | | | | | | | | | | | | | Extend ConnectionPool.to_url to parse querystring arguments to correct type. | |||||
| * | | | | | PEP8 fixes | Tim Savage | 2016-03-29 | 2 | -8/+22 | |
| | | | | | | ||||||
| * | | | | | Extend ConnectionPool.to_url to parse querystring arguments to correct type. | Tim Savage | 2016-03-29 | 2 | -4/+68 | |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | Previously if a value for socket_timeout was supplied as part fo the URL an error would be raised when a socket was created with an invalid type, this change fixes that by parsing `socket_timeout`, `socket_connect_timeout` to float values. In addition the boolean values `socket_keepalive` and `retry_on_timeout` are parsed to bool types taking into account the usage of True/False, Yes/No strings. | |||||
* | | | | | Merge pull request #685 from iandyh/master | Andy McCurdy | 2016-02-18 | 3 | -2/+168 | |
|\ \ \ \ \ | |/ / / / |/| | | | | Redis cluster commands | |||||
| * | | | | pep8 code | iandyh | 2016-02-19 | 2 | -12/+15 | |
| | | | | | ||||||
| * | | | | format long mocked response string | iandyh | 2016-02-18 | 1 | -2/+23 | |
| | | | | | ||||||
| * | | | | redis cluster commands | iandyh | 2015-12-01 | 3 | -1/+143 | |
| |/ / / | ||||||
* | | | | Merge pull request #706 from gward/master | Andy McCurdy | 2016-01-21 | 1 | -2/+2 | |
|\ \ \ \ | |/ / / |/| | | | Fix typo in comment. | |||||
| * | | | Fix typo in comment. | Greg Ward | 2015-12-09 | 1 | -2/+2 | |
|/ / / | ||||||
* | | | Merge pull request #684 from blopker/feature/sentinel-timeout | Andy McCurdy | 2015-11-27 | 2 | -3/+26 | |
|\ \ \ | | | | | | | | | FIX #651 try next Sentinel node on TimeoutError | |||||
| * | | | FIX #651 try next Sentinel node on TimeoutError | Bo Lopker | 2015-11-27 | 2 | -3/+26 | |
|/ / / | ||||||
* | | | Merge pull request #679 from candeira/fix-getitem | Andy McCurdy | 2015-11-25 | 2 | -1/+5 | |
|\ \ \ | | | | | | | | | fix getitem syntax for redis get when value is the empty string | |||||
| * | | | fix getitem syntax for redis get when value is the empty string | Javier Candeira | 2015-11-25 | 2 | -1/+5 | |
|/ / / | ||||||
* | | | changelog | Andy McCurdy | 2015-11-09 | 1 | -0/+3 | |
| | | | ||||||
* | | | raise TimeoutError if a socket.timeout is raised while connecting | Andy McCurdy | 2015-11-09 | 1 | -0/+2 | |
| | | | | | | | | | | | | fixes #675 | |||||
* | | | simplified testing configuration and added Python 3.5 to the matrix | Alex Grönholm | 2015-11-03 | 2 | -39/+13 | |
| | | | ||||||
* | | | add the python 3.5 classifier | Andy McCurdy | 2015-11-03 | 1 | -0/+1 | |
| | | | ||||||
* | | | 2.10.5 (incrementing the version to avoid a pypi issue)2.10.5 | Andy McCurdy | 2015-11-02 | 3 | -3/+5 | |
| | | | ||||||
* | | | 2.10.42.10.4 | Andy McCurdy | 2015-11-02 | 2 | -2/+2 | |
| | | | ||||||
* | | | start building universal wheels with the next pypi release | Andy McCurdy | 2015-11-02 | 1 | -0/+2 | |
| | | | ||||||
* | | | socket errors on windows contain more than 2 arguments. | Andy McCurdy | 2015-11-02 | 1 | -3/+4 | |
| | | | | | | | | | | | | fixes #641 | |||||
* | | | typo | Andy McCurdy | 2015-11-02 | 1 | -2/+2 | |
| | | | ||||||
* | | | ignore errors raised in SocketBuffer's close method. See #633. | Andy McCurdy | 2015-11-02 | 1 | -2/+10 | |
| | | | ||||||
* | | | max_connections should default to None | Andy McCurdy | 2015-11-02 | 2 | -2/+4 | |
| | | | ||||||
* | | | Merge pull request #665 from ohadpartuck/connection_pool_max_connections | Andy McCurdy | 2015-11-02 | 1 | -2/+4 | |
|\ \ \ | | | | | | | | | adding max_connections option to StrictRedis Class | |||||
| * | | | adding max_connections option to StrictRedis Class | Ohad Perry | 2015-10-13 | 1 | -2/+4 | |
| | | | | ||||||
* | | | | cleanup | Andy McCurdy | 2015-11-02 | 2 | -7/+4 | |
| | | | | ||||||
* | | | | Merge pull request #669 from th13f/master | Andy McCurdy | 2015-11-02 | 1 | -2/+12 | |
|\ \ \ \ | | | | | | | | | | | parsing 'max number of clients reached' as ConnectionError | |||||
| * | | | | decreased length of exception class retrieving line | th13f | 2015-10-26 | 1 | -1/+4 | |
| | | | | | ||||||
| * | | | | parsing 'max number of clients reached' as ConnectionError | th13f | 2015-10-26 | 1 | -2/+9 | |
|/ / / / |