summaryrefslogtreecommitdiff
path: root/redis/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Kristjan/issue #2754: Add missing argument to SentinelManagedConnection.read_...Kristján Valur Jónsson2023-05-101-0/+3
* fix create single_connection_client from url (#2752)dvora-h2023-05-081-1/+5
* Optionally disable disconnects in read_response (#2695)Kristján Valur Jónsson2023-05-083-100/+54
* clean warnings (#2731)dvora-h2023-05-081-1/+1
* add "address_remap" feature to RedisCluster (#2726)Kristján Valur Jónsson2023-05-021-1/+30
* Improve error output for master discovery (#2720)Marc Schöchlin2023-04-271-2/+8
* Fix incorrect usage of once flag in async Sentinel (#2718)Felipe Machado2023-04-271-2/+2
* asyncio: Fix memory leak caused by hiredis (#2693) (#2694)Oran Avraham2023-04-131-3/+4
* Fix async (#2673)dvora-h2023-03-291-7/+3
* Fixing cancelled async futures (#2666)Chayim2023-03-292-37/+83
* Fix issue 2660: PytestUnraisableExceptionWarning from asycio client (#2669)shacharPash2023-03-281-0/+5
* fix: do not use asyncio's timeout lib before 3.11.2 (#2659)Thiago Bellini Ribeiro2023-03-281-1/+3
* AsyncIO Race Condition Fix (#2641)v4.5.3Chayim2023-03-222-5/+19
* 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
* Fix issue 2540: Synchronise concurrent command calls to single-client mode. (...Vivanov982023-01-291-2/+13
* Make PythonParser resumable (#2510)Kristján Valur Jónsson2023-01-051-18/+51
* Fix incorrect _disconnect_raise docstring (#2534)Mohsin Haider2023-01-051-2/+2
* replase get_event_loop wite get_running_loop (#2530)dvora-h2023-01-053-5/+5
* Add `timeout` parameter for SentinelManagedConnection (#2495)Guillaume Tassery2022-12-251-3/+10
* Combine auto-concatenated strings (#2482)David Gilman2022-12-142-6/+6
* Async clusters: Support creating locks inside async functions (#2471)Utkarsh Gupta2022-12-041-1/+5
* Async: added 'blocking' argument to call lock method (#2454)Sibuken2022-12-012-0/+16
* Added a replacement for the default cluster node in the event of failure. (#2...Bar Shaul2022-12-011-1/+21
* Failover handling improvements for RedisCluster and Async RedisCluster (#2377)Bar Shaul2022-11-104-59/+79
* CredentialsProvider class added to support password rotation (#2261)Bar Shaul2022-11-103-11/+36
* Fix special response parsing options handling (#2302)Shay Fadida2022-11-092-0/+9
* Enable AsyncIO cluster mode lock (#2446)Milhan2022-11-092-4/+79
* fix docs for password protected socket access (#2378)Robert Hofer2022-11-072-2/+2
* 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-292-108/+52
* Dev/no can read (#2360)Kristján Valur Jónsson2022-09-292-38/+35
* 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-282-40/+3
* Handle auth errors for newer versions of Redis. (#2325) (#2329)Luca Cillario2022-08-301-0/+11
* Replace `ensure_future` with `create_task` (#2311)dvora-h2022-08-021-6/+6
* automatically reconnect pubsub when reading messages in blocking mode (#2281)Kristján Valur Jónsson2022-07-271-3/+9
* Drop python 3.6 support (#2306)dvora-h2022-07-273-29/+12
* async_cluster: fix max_connections/ssl & improve args (#2217)Utkarsh Gupta2022-07-271-181/+196
* async_cluster: fix concurrent pipeline (#2280)Utkarsh Gupta2022-07-241-9/+9
* 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-212-2/+12
* commands/cluster: use pipeline to execute split commands (#2230)Utkarsh Gupta2022-06-271-6/+11
* Fix retries in async mode (#2180)Eric Lemoine2022-06-193-3/+39