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

redisCluster can't enable RESP3

Open owanio1992 opened this issue 1 year ago • 6 comments

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")

Screenshot_20240215_155546

owanio1992 avatar Feb 15 '24 07:02 owanio1992