| Commit message (Expand) | Author | Age | Files | Lines |
* | Version 3.3.93.3.9 | Zac Bristow | 2019-10-10 | 1 | -5/+7 |
* | version 3.3.7, Fixed a socket.error regression introduced in 3.3.03.3.7 | Andy McCurdy | 2019-08-13 | 1 | -4/+16 |
* | version 3.3.6, fixed a regression in 3.3.5 with pubsub timeouts3.3.6 | Andy McCurdy | 2019-08-06 | 1 | -0/+8 |
* | version 3.3.5, handle socket.timeout errors correctly in Python 2.73.3.5 | Andy McCurdy | 2019-08-02 | 1 | -16/+8 |
* | version 3.3.4, more specifically identify nonblocking read errors3.3.4 | Andy McCurdy | 2019-07-30 | 1 | -1/+2 |
* | version 3.3.4, more specifically identify nonblocking read errors | Andy McCurdy | 2019-07-30 | 1 | -14/+17 |
* | Version 3.3.3. Accomodate Python 2.7.x versions < 2.7.9.3.3.3 | Andy McCurdy | 2019-07-30 | 1 | -2/+2 |
* | Version 3.3.2, SSL Blocking Exceptions don't use errno.EWOULDBLOCK3.3.2 | Andy McCurdy | 2019-07-29 | 1 | -3/+4 |
* | version 3.3.1, fixed a regression involving SSL and non-blocking sockets3.3.1 | Andy McCurdy | 2019-07-29 | 1 | -8/+19 |
* | PING/PONG health checks | Andy McCurdy | 2019-07-28 | 1 | -14/+47 |
* | Use nonblocking sockets instead of selectors for healthy connections | Andy McCurdy | 2019-07-09 | 1 | -50/+105 |
* | All authentication-related errors now raise AuthenticationError | Andy McCurdy | 2019-06-03 | 1 | -1/+4 |
* | Pass encoding_errors setting to hiredis (>=1.0.0) (#1162) | Brian Candler | 2019-05-29 | 1 | -0/+4 |
* | remove Token class in favor of bytestringremove_token | Andy McCurdy | 2019-05-28 | 1 | -46/+7 |
* | Merged the error process of "reading socket error" in two Parser class and ad... | vic020 | 2019-04-11 | 1 | -36/+31 |
* | make sure the selector is instantiated prior to cleaning it up | Andy McCurdy | 2019-03-18 | 1 | -2/+4 |
* | Close the selector on disconnect | Bruce Merry | 2019-03-18 | 1 | -0/+2 |
* | attempt to provide only healthy connections from the pool | Andy McCurdy | 2019-02-04 | 1 | -3/+42 |
* | Merge pull request #1129 from Chronial/feature/fix-except | Andy McCurdy | 2019-02-01 | 1 | -4/+4 |
|\ |
|
| * | Do not leave connections in invalid state | Chronial | 2019-01-30 | 1 | -4/+4 |
* | | Merge pull request #1130 from Junnplus/socket-patch | Andy McCurdy | 2019-02-01 | 1 | -1/+1 |
|\ \ |
|
| * | | use IPPROTO_TCP constant instead of SOL_TCP constant | junnplus | 2019-01-31 | 1 | -1/+1 |
| |/ |
|
* | | readd the connection destructor | Andy McCurdy | 2019-02-01 | 1 | -0/+6 |
* | | Improve how connection pools operate in forked/child proceeses. | Andy McCurdy | 2019-01-31 | 1 | -8/+4 |
* | | Merge branch 'pr/1108' into pythonparser | Andy McCurdy | 2019-01-28 | 1 | -3/+1 |
|\ \
| |/
|/| |
|
| * | Make PythonParser's on_disconnect consistent with | Alexey Popravka | 2019-01-03 | 1 | -3/+1 |
* | | Connection URLs must have a valid scheme. | Andy McCurdy | 2019-01-27 | 1 | -2/+6 |
* | | Merge pull request #1087 from oridistor/ssl_sni | Andy McCurdy | 2019-01-27 | 1 | -5/+18 |
|\ \ |
|
| * | | pycodestyle fixes to connection.py | Roey Prat | 2018-11-27 | 1 | -4/+5 |
| * | | Made sure SSL SNI will not affect using redis-py in versions older than 2.7.9 | Ori Markovitch | 2018-11-26 | 1 | -9/+17 |
| * | | Add SSL SNI support | Danni Moiseyev | 2018-11-26 | 1 | -5/+9 |
* | | | Merge pull request #1043 from Siecje/repr | Andy McCurdy | 2019-01-27 | 1 | -1/+1 |
|\ \ \
| |_|/
|/| | |
|
| * | | Fix ConnectionPool repr when using default values | Cody Scot | 2018-10-26 | 1 | -1/+1 |
* | | | Remove unnecessary compat shim for 'bytes' | Jon Dufresne | 2018-12-28 | 1 | -1/+1 |
| |/
|/| |
|
* | | Add missing UnixDomainSocketConnection._buffer_cutoff | Jyrki Muukkonen | 2018-11-15 | 1 | -0/+1 |
* | | Merge pull request #1017 from u2mejc/issue-1016 | Andy McCurdy | 2018-11-14 | 1 | -2/+2 |
|\ \ |
|
| * | | Enforce ssl_cert_reqs='required' by default | Justin Clark | 2018-08-07 | 1 | -2/+2 |
| |/ |
|
* | | Merge pull request #1055 from tzickel/pipeperf | Andy McCurdy | 2018-11-14 | 1 | -8/+15 |
|\ \ |
|
| * | | Improve performence of transactions / pipeline requests which involve large | tzickel | 2018-11-06 | 1 | -8/+15 |
* | | | use str() to encode int or long values | Andy McCurdy | 2018-11-14 | 1 | -1/+4 |
* | | | only accept bytes, strings, ints, longs and floats as user input | Andy McCurdy | 2018-11-14 | 1 | -5/+10 |
* | | | Use unicode literals throughout project | Jon Dufresne | 2018-11-03 | 1 | -31/+17 |
* | | | Use io package for BytesIO | Jon Dufresne | 2018-11-03 | 1 | -2/+3 |
* | | | Pass iterator to tuple() without coercing to a list | Jon Dufresne | 2018-11-03 | 1 | -2/+2 |
* | | | Remove from __future__ import with_statement | Jon Dufresne | 2018-11-03 | 1 | -1/+0 |
|/ / |
|
* | | Merge pull request #985 from mmaslowskicc/from-url-max-connections | Andy McCurdy | 2018-11-02 | 1 | -1/+2 |
|\ \ |
|
| * | | Fix parsing max_connections URL query string parameter | Michał Masłowski | 2018-05-23 | 1 | -1/+2 |
| |/ |
|
* | | Prefer https:// for URLs when available | Jon Dufresne | 2018-11-01 | 1 | -3/+4 |
* | | pycodestyle fixes in client | Roey Prat | 2018-10-28 | 1 | -5/+5 |
|/ |
|
* | Allow socket type to be configured in Connection | AJ Ortega | 2017-11-07 | 1 | -2/+3 |