summaryrefslogtreecommitdiff
path: root/redis/connection.py
Commit message (Expand)AuthorAgeFilesLines
* Optionally disable disconnects in read_response (#2695)Kristján Valur Jónsson2023-05-081-6/+18
* Fix potential race condition during disconnection (#2719)Markus Gerstel2023-05-011-4/+6
* asyncio: Fix memory leak caused by hiredis (#2693) (#2694)Oran Avraham2023-04-131-3/+4
* UnixDomainSocketConnection missing constructor argument (#2630)woutdenolf2023-03-281-1/+2
* introduce AbstractConnection so that UnixDomainSocketConnection can call supe...woutdenolf2023-03-161-158/+120
* Speeding up the protocol parsing (#2596)Chayim2023-03-151-13/+11
* Fix #2581 UnixDomainSocketConnection' object has no attribute '_command_packe...Sergey Prokazov2023-02-081-0/+2
* Fix issue with `pack_commands` returning an empty byte sequence (#2416)jmcbailey2023-02-071-1/+2
* Fix issue 2567: NoneType check before raising exception (#2569)Anurag Bandyopadhyay2023-02-061-2/+3
* Use hiredis::pack_command to serialized the commands. (#2570)Sergey Prokazov2023-02-061-45/+90
* Simplify the sync SocketBuffer, add type hints (#2543)Kristján Valur Jónsson2023-01-221-39/+44
* Make PythonParser resumable (#2510)Kristján Valur Jónsson2023-01-051-16/+42
* Fix for Unhandled exception related to self.host with unix socket (#2520)Jason Joy Atsu Winmorre2022-12-251-11/+23
* Combine auto-concatenated strings (#2482)David Gilman2022-12-141-2/+2
* Failover handling improvements for RedisCluster and Async RedisCluster (#2377)Bar Shaul2022-11-101-1/+8
* CredentialsProvider class added to support password rotation (#2261)Bar Shaul2022-11-101-9/+30
* fix docs for password protected socket access (#2378)Robert Hofer2022-11-071-1/+1
* Catch `Exception` and not `BaseException` in the `Connection` (#2104)Kristján Valur Jónsson2022-09-291-2/+2
* Support Hiredis >= 1.x only (remove `packaging` dependency) (#2385)Aarni Koskela2022-09-281-44/+10
* Handle auth errors for newer versions of Redis. (#2325) (#2329)Luca Cillario2022-08-301-1/+11
* Be more strict about url scheme parsing (#2343)Klaas van Schelven2022-08-211-6/+11
* Fix retries in async mode (#2180)Eric Lemoine2022-06-191-2/+6
* update black to 22.3.0 (#2171)Utkarsh Gupta2022-05-301-14/+5
* Replace OSError exceptions from `can_read` with `redis.ConnectionError` (#2140)Kristján Valur Jónsson2022-05-081-1/+7
* Rename 'update_supported_erros' to 'update_supported_errors' in Retry module ...Jean Lopin2022-05-021-2/+2
* Add support to use certificates from string in ssl connection (#2048)dvora-h2022-03-141-2/+11
* Catch OSError in BlockingConnectionPool.get_connection (#2001)Éric Lemoine2022-02-221-1/+1
* Add support for Redis 7 functions (#1998)dvora-h2022-02-221-2/+9
* Fixing AttributeError on some connection errors (#1905)Chayim2022-01-261-4/+7
* Fixing AttributeError in UnixDomainSocketConnection (#1903)dvora-h2022-01-261-5/+12
* Added retry mechanism on socket timeouts when connecting to the server (#1895)Bar Shaul2022-01-251-2/+4
* OCSP Stapling Support (#1873)Chayim2022-01-171-1/+47
* get_connection: catch OSError too (#1832)Iñaki Ucar2022-01-101-1/+1
* Documentation cleanup (#1841)Chayim2021-12-301-2/+3
* OCSP stapling support (#1820)Chayim2021-12-261-2/+15
* Support for specifying error types with retry (#1817)Bar Shaul2021-12-231-4/+23
* Support for password-encrypted SSL private keys (#1782)Chayim2021-12-161-4/+31
* close socket after server disconnect (#1797)Paul Brown2021-12-161-2/+7
* Support SYNC and PSYNC (#1741)Avital Fine2021-12-151-1/+1
* Ensure redis_connect_func is set on uds connection (#1794)Ali-Akber Saifee2021-12-151-1/+3
* Allow overriding connection class via keyword arguments (#1752)Maksim Novikov2021-12-021-0/+4
* Added black and isort (#1734)Anas2021-11-301-185/+244
* Pyupgrade + flynt + f-strings (#1759)Aarni Koskela2021-11-301-34/+31
* Fixing deprecating distutils (PEP 632) (#1730)Chayim2021-11-251-5/+5
* Adding support for non-decodable commands (#1731)Chayim2021-11-251-6/+9
* Adding RedisCluster client to support Redis Cluster Mode (#1660)Bar Shaul2021-11-251-6/+23
* Better removal of hiredis warning (#1726)Alex Wu2021-11-211-4/+0
* removing hiredis warning (#1721)Chayim2021-11-171-5/+0
* Fix garbage collection deadlock (#1578)Eugene Morozov2021-11-081-3/+6
* Adding vulture for static analysis (#1655)Chayim2021-10-281-1/+0