summaryrefslogtreecommitdiff
path: root/redis/connection.py
Commit message (Expand)AuthorAgeFilesLines
* ConnectionPool.disconnect now accepts arg to disconnect only idle connssentinel-1345Andy McCurdy2020-06-011-5/+15
* clearer namingAndy McCurdy2020-06-011-3/+3
* always remove connection from _in_use_connections on releaseAndy McCurdy2020-06-011-3/+12
* implement pool_owns_connection on SentinelConnectionPoolAndy McCurdy2020-05-291-0/+9
* add a hook for a ConnectionPool to determine if it owns a ConnectionAndy McCurdy2020-05-201-2/+5
* Restore try/except in __del__ methodsAndy McCurdy2020-05-201-3/+12
* Tune the locking in ConnectionPool.get_connectionAndy McCurdy2020-05-141-21/+22
* Fix typo (missing space) in exception message (#1334)Jon Dufresne2020-04-281-1/+1
* Switch to flake8 for static code analysis (#1328)Jon Dufresne2020-04-161-1/+0
* Fix str/bytes mixup in PythonParser.read_response() (#1324)Jon Dufresne2020-04-131-12/+11
* Simplify exception handlers (#1319)Jon Dufresne2020-04-111-10/+7
* Support memoryview encoding/decoding as a no-opCody-G2020-02-241-10/+15
* expand AUTH fallback support to pre-v6 Redis servers.Andy McCurdy2020-02-121-0/+6
* Stop hiding errors that occur inside __del__ methodsJon Dufresne2020-02-121-12/+3
* Drop unused variables and imports (#1284)Jon Dufresne2020-02-121-1/+1
* remove Redis and ConnectionPool __eq__ comparisonAndy McCurdy2020-02-011-6/+0
* Move the username argument in the Redis and Connection classes to the endAndy McCurdy2020-01-311-6/+5
* Provide AUTH fallback support for connection URLs with a username componentAndy McCurdy2020-01-311-1/+15
* better thread-safety for ConnectionPool (#1270)Andy McCurdy2020-01-301-43/+120
* Slight optimization to command packing.Andy McCurdy2019-12-291-3/+4
* Added the 'ssl_check_hostname' option.Andy McCurdy2019-12-291-2/+5
* more accurate description of acceptable argument typesAndy McCurdy2019-12-291-2/+2
* Allow setting client_name during connection construction.Peter van Dijk2019-12-291-15/+31
* Added support for ACL commandsAndy McCurdy2019-12-281-14/+27
* Fix simple typo: recurrsion -> recursionTim Gates2019-12-071-1/+1
* Add equality test on Redis client and conn pool (#1240)Rajiv Bakulesh Shah2019-11-111-0/+6
* Version 3.3.93.3.9Zac Bristow2019-10-101-5/+7
* version 3.3.7, Fixed a socket.error regression introduced in 3.3.03.3.7Andy McCurdy2019-08-131-4/+16
* version 3.3.6, fixed a regression in 3.3.5 with pubsub timeouts3.3.6Andy McCurdy2019-08-061-0/+8
* version 3.3.5, handle socket.timeout errors correctly in Python 2.73.3.5Andy McCurdy2019-08-021-16/+8
* version 3.3.4, more specifically identify nonblocking read errors3.3.4Andy McCurdy2019-07-301-1/+2
* version 3.3.4, more specifically identify nonblocking read errorsAndy McCurdy2019-07-301-14/+17
* Version 3.3.3. Accomodate Python 2.7.x versions < 2.7.9.3.3.3Andy McCurdy2019-07-301-2/+2
* Version 3.3.2, SSL Blocking Exceptions don't use errno.EWOULDBLOCK3.3.2Andy McCurdy2019-07-291-3/+4
* version 3.3.1, fixed a regression involving SSL and non-blocking sockets3.3.1Andy McCurdy2019-07-291-8/+19
* PING/PONG health checksAndy McCurdy2019-07-281-14/+47
* Use nonblocking sockets instead of selectors for healthy connectionsAndy McCurdy2019-07-091-50/+105
* All authentication-related errors now raise AuthenticationErrorAndy McCurdy2019-06-031-1/+4
* Pass encoding_errors setting to hiredis (>=1.0.0) (#1162)Brian Candler2019-05-291-0/+4
* remove Token class in favor of bytestringremove_tokenAndy McCurdy2019-05-281-46/+7
* Merged the error process of "reading socket error" in two Parser class and ad...vic0202019-04-111-36/+31
* make sure the selector is instantiated prior to cleaning it upAndy McCurdy2019-03-181-2/+4
* Close the selector on disconnectBruce Merry2019-03-181-0/+2
* attempt to provide only healthy connections from the poolAndy McCurdy2019-02-041-3/+42
* Merge pull request #1129 from Chronial/feature/fix-exceptAndy McCurdy2019-02-011-4/+4
|\
| * Do not leave connections in invalid stateChronial2019-01-301-4/+4
* | Merge pull request #1130 from Junnplus/socket-patchAndy McCurdy2019-02-011-1/+1
|\ \
| * | use IPPROTO_TCP constant instead of SOL_TCP constantjunnplus2019-01-311-1/+1
| |/
* | readd the connection destructorAndy McCurdy2019-02-011-0/+6
* | Improve how connection pools operate in forked/child proceeses.Andy McCurdy2019-01-311-8/+4