summaryrefslogtreecommitdiff
path: root/redis/asyncio
Commit message (Expand)AuthorAgeFilesLines
* fixing variable in cancelChayim I. Kirshen2023-03-221-1/+1
* guardChayim I. Kirshen2023-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
* async_cluster: fix simultaneous initialize (#2231)Utkarsh Gupta2022-06-191-2/+2
* Uppercase commands in CommandsParser.get_keys (#2236)Falk2022-06-191-2/+2
* async_cluster: improve docs (#2208)Utkarsh Gupta2022-06-021-36/+37
* async_cluster: optimisations (#2205)Utkarsh Gupta2022-06-012-91/+97
* async_cluster: add pipeline support (#2199)Utkarsh Gupta2022-05-301-16/+312
* update black to 22.3.0 (#2171)Utkarsh Gupta2022-05-302-2/+2
* async_cluster: add/update typing (#2195)Utkarsh Gupta2022-05-303-82/+102
* set default response_callbacks to redis.asyncio.cluster.ClusterNode (#2201)rapidia2022-05-301-1/+1
* Add Async RedisCluster (#2099)Utkarsh Gupta2022-05-085-65/+1299
* Replace OSError exceptions from `can_read` with `redis.ConnectionError` (#2140)Kristján Valur Jónsson2022-05-081-1/+7
* Async Connection: Allow `PubSub.run()` without previous `subscribe()` (#2148)Kristján Valur Jónsson2022-05-021-3/+12