summaryrefslogtreecommitdiff
path: root/redis/asyncio/connection.py
Commit message (Expand)AuthorAgeFilesLines
* Optionally disable disconnects in read_response (#2695)Kristján Valur Jónsson2023-05-081-10/+18
* asyncio: Fix memory leak caused by hiredis (#2693) (#2694)Oran Avraham2023-04-131-3/+4
* fix: do not use asyncio's timeout lib before 3.11.2 (#2659)Thiago Bellini Ribeiro2023-03-281-1/+3
* Fix behaviour of async PythonParser to match RedisParser as for issue #2349 (...Kristján Valur Jónsson2023-03-161-13/+11
* fix: replace async_timeout by asyncio.timeout (#2602)Mehdi ABAAKOUK2023-03-161-8/+13
* Speeding up the protocol parsing (#2596)Chayim2023-03-151-13/+12
* Fix issue with `pack_commands` returning an empty byte sequence (#2416)jmcbailey2023-02-071-1/+2
* Fix issue 2349: Let async HiredisParser finish parsing after a Connection.dis...Kristján Valur Jónsson2023-02-061-6/+9
* Make PythonParser resumable (#2510)Kristján Valur Jónsson2023-01-051-18/+51
* replase get_event_loop wite get_running_loop (#2530)dvora-h2023-01-051-1/+1
* Failover handling improvements for RedisCluster and Async RedisCluster (#2377)Bar Shaul2022-11-101-1/+7
* CredentialsProvider class added to support password rotation (#2261)Bar Shaul2022-11-101-11/+30
* fix docs for password protected socket access (#2378)Robert Hofer2022-11-071-1/+1
* Remove the superflous SocketBuffer from asyncio PythonParser (#2418)Kristján Valur Jónsson2022-10-301-133/+37
* fix: catch OSError on asyncio (#2412)송형근(Hyeongguen Song)/DnU2022-10-251-2/+2
* Simplify async timeouts and allowing `timeout=None` in `PubSub.get_message()...v4.4.0rc2Kristján Valur Jónsson2022-09-291-91/+47
* Dev/no can read (#2360)Kristján Valur Jónsson2022-09-291-31/+20
* Add `nowait` flag to `asyncio.Connection.disconnect()` (#2356)Kristján Valur Jónsson2022-09-291-10/+11
* Catch `Exception` and not `BaseException` in the `Connection` (#2104)Kristján Valur Jónsson2022-09-291-5/+3
* Dev/no lock (#2308)Kristján Valur Jónsson2022-09-281-35/+0
* Handle auth errors for newer versions of Redis. (#2325) (#2329)Luca Cillario2022-08-301-0/+11
* Drop python 3.6 support (#2306)dvora-h2022-07-271-17/+8
* fix: workaround asyncio bug on connection reset by peer (#2259)Mehdi ABAAKOUK2022-07-241-1/+10
* fix is_connected (#2278)dvora-h2022-07-211-1/+1
* Use retry mechanism in async version of Connection objects (#2271)szumka2022-07-211-1/+5
* Fix retries in async mode (#2180)Eric Lemoine2022-06-191-0/+17
* update black to 22.3.0 (#2171)Utkarsh Gupta2022-05-301-1/+1
* async_cluster: add/update typing (#2195)Utkarsh Gupta2022-05-301-4/+4
* Add Async RedisCluster (#2099)Utkarsh Gupta2022-05-081-57/+83
* Replace OSError exceptions from `can_read` with `redis.ConnectionError` (#2140)Kristján Valur Jónsson2022-05-081-1/+7
* always clear reference to closed reader/writer (#2077)Bea Steers2022-04-041-2/+3
* Add support to use certificates from string in ssl connection (#2048)dvora-h2022-03-141-2/+11
* redis_connect_func (#2046)Lazaros Toumanidis2022-03-141-0/+2
* Add Async Support (#1899)Andrew Chen Wang2022-02-221-0/+1707