-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Redis 7.0.0 #2082
Comments
1 task
Also redis now return errors like |
6 tasks
Thought I'd pop in here and leave a quick breadcrumb trail to redis/redis-py#1813 -- it's an issue tracking the Redis 7.0 features that the Python client needed to get in place and it has a great checklist of changes/new commands that might need to be supported. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version 7.0.0 of Redis was recently released, and contains a variety of backwards-incompatible changes.
One such example is that version 7.0.0 has extended the number of fields in the "CLUSTER SLOTS" command response, by adding a new "hostname" field. The current code in this library returns an error when it encounters such a response, since it expects only 2 or 3 elements (the IP, Port, and optionally the ID).
Please work towards support for Version 7.0.0 by resolving this and other incompatibilities.
The text was updated successfully, but these errors were encountered: