redis-py
redis-py copied to clipboard
redisCluster can't enable RESP3
when try enable protocol=3 get error
Segmentation fault
Version: 5.0.1
Platform: Python3.10.12 on ubuntu 22.04
Description: can't set args protocol=3
reproduce:
pip3 install redis==5.0.1
python3
from redis import RedisCluster as Redis
r = Redis.from_url("redis://localhost:7000/0?protocol=2")
r.ping()
r = Redis.from_url("redis://localhost:7000/0?protocol=3")