-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Inconsistent INFO keysizes response #3616
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
Comments
Hi @itayTziv , thank you for pointing this out! We'll have a look at this. |
Hi @itayTziv, can you please share more info about the client(redis-py lib version, sync/async client, cluster/sentinel/standalone) you are using and the Redis database setup you have. |
This feature should exist in Redis OSS >=7.4 (I'd suggest testing it with Redis 8, it had some bug fixes) |
Hi @itayTziv, I just tested that with the code in master (against latest Redis 8), and the output is as expected, even with just one element: Also tested with 5.2.1 - sync and async client - the results are still ok. Do you have a small code example with which I can try to reproduce it locally? |
After double checking, we use |
When we execute
INFO keysizes
we sometimes receive dictionary representation (e.g.{'db0_distrib_sets_items': {'1': 1, '2': 1}}
) and sometimes string (e.g.{'db0_distrib_sets_items': '1=1'}
)The pattern seem to depend on rather it has single element on multiple
The text was updated successfully, but these errors were encountered: