We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug When using ZRANGE command within MULTI using RESP3 protocol, result is different in dragonfly compared to redis.
ZRANGE
MULTI
To Reproduce Take a look at the following queries (connected to instances with -3 parameter to use RESP3):
-3
Redis:
127.0.0.1:6379> keys * (empty array) 127.0.0.1:6379> ZADD test 500 "value" (integer) 1 127.0.0.1:6379> ZRANGE test 0 500 WITHSCORES 1) 1) "value" 2) (double) 500 127.0.0.1:6379> MULTI OK 127.0.0.1:6379(TX)> ZRANGE test 0 500 WITHSCORES QUEUED 127.0.0.1:6379(TX)> EXEC 1) 1) 1) "value" 2) (double) 500
Dragonfly:
127.0.0.1:6380> keys * (empty array) 127.0.0.1:6380> ZADD test 500 "value" (integer) 1 127.0.0.1:6380> ZRANGE test 0 500 WITHSCORES 1) 1) "value" 2) (double) 500 127.0.0.1:6380> MULTI OK 127.0.0.1:6380(TX)> ZRANGE test 0 500 WITHSCORES QUEUED 127.0.0.1:6380(TX)> EXEC 1) 1) "value" 2) (double) 500
Pay attention to nesting in the last response - it's deeper in Redis.
Expected behavior Dragonfly should return same result as Redis.
Environment (please complete the following information):
Reproducible Code Snippet Just follow the commands provided above
The text was updated successfully, but these errors were encountered:
Thank you @kukicola for reporting this
Sorry, something went wrong.
BorysTheDev
Successfully merging a pull request may close this issue.
Describe the bug
When using
ZRANGE
command withinMULTI
using RESP3 protocol, result is different in dragonfly compared to redis.To Reproduce
Take a look at the following queries (connected to instances with
-3
parameter to use RESP3):Redis:
Dragonfly:
Pay attention to nesting in the last response - it's deeper in Redis.
Expected behavior
Dragonfly should return same result as Redis.
Environment (please complete the following information):
Reproducible Code Snippet
Just follow the commands provided above
The text was updated successfully, but these errors were encountered: