redis-py icon indicating copy to clipboard operation
redis-py copied to clipboard

Redis Python client

Results 441 redis-py issues
Sort by recently updated
recently updated
newest added

**Version**: master (https://github.com/redis/redis-py/tree/bea72995fd39b01e2f0a1682b16b6c7690933f36) **Platform**: Python 3.10 on Ubuntu 20.04 **Description**: There is no default **socket_timeout** set for connections, which could lead to outages. (only tested `RedisCluster`, but the connection object...

**Version**: redis==4.3.3 **Platform**: ProductName: Mac OS X ProductVersion: 10.15.7 BuildVersion: 19H1922 **Description**: Based on my interpretation of [the documentation of the ProcessPool class](https://redis-py.readthedocs.io/en/stable/_modules/redis/connection.html#ConnectionPool), there was intention to support forking. This...

In my case redis TLS works fine but Sentinel TLS not work code is below ```python import redis import redis.sentinel s = redis.sentinel.Sentinel( [('x.x.x.x', 26379),('x.x.x.x', 6379),('x.x.x.x', 26379)], ssl=True, connection_class=redis.sentinel.SentinelManagedSSLConnection, ssl_keyfile="/etc/ssl/st2rediscerts/client.key",...

It seems that the .json() ability [is supported in the Cluster client](https://github.com/redis/redis-py/pull/2032 ) but not in Async Cluster client. ```python from redis.asyncio.cluster import RedisCluster client = RedisCluster() await client.json().get("test") ```...

**Version**: redis-py 4.3.3 redis 7.0.2 **Platform**: Python 3.10 / Any plaftorm **Description**: For now, redis-py lib execute `COMMAND GETKEYS` for any command with **movablekeys** flag every time this command called(implemented...

cluster

**Version**: 4.3.3 **Platform**: n/a **Description**: We are investigating using redis-py's async support for connecting to a Redis pubsub channel using a RedisCluster, but after looking through the code, it appears...

feature
async
cluster

**Version**: redis-py 4.3.3 redis 7.0.2 **Platform**: Python 3.10 / Mac ARM **Description**: According to [this](https://github.com/aio-libs/aioredis-py/issues/1208) issue, aioredis lib has significant performance degradation after 2 version. As I understand, aioredis was...

help wanted
async

**Basic Info** - redis-py version: redis==4.1.4 - pyhon: Python 3.6.5 - Redis Version:Alibaba Cloud ApsaraDB for Redis 5.0 Community Edition ** Description ** When Create a new account on accountManage...

**Version**: 4.3.3 **Platform**: Python 3.10 (actually any python) **Description**: By default, there is a 2**31 max connection [pool size](https://github.com/redis/redis-py/blob/c54dfa49dda6a7b3389dc230726293af3ffc68a3/redis/connection.py#L1282). Such a large number seems unreasonable and unsafe to me for...

bug
breakingchange

``` File "/var/lang/python37/lib/python3.7/threading.py", line 926, in _bootstrap_inner self.run() File "/var/lang/python37/lib/python3.7/threading.py", line 870, in run self._target(*self._args, **self._kwargs) File "/var/user/django/utils/autoreload.py", line 64, in wrapper fn(*args, **kwargs) File "/var/user/django/core/management/commands/runserver.py", line 118, in inner_run...