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
Hi.
Dragonfly Version: v1.27.1
The HMGET command returns a value only for the first unique key.
Reproduce:
127.0.0.1:6379> HSET test f1 "hi" (integer) 1 127.0.0.1:6379> HMGET test f1 f1 f1 1) "hi" 2) (nil) 3) (nil)
Expected behavior:
127.0.0.1:6379> HSET test f1 "hi" (integer) 1 127.0.0.1:6379> HMGET test f1 f1 f1 1) "hi" 2) "hi" 3) "hi"
Expects behavior similar to that of Redis and KeyDB
The text was updated successfully, but these errors were encountered:
@Gasillo you should be posting this to the dragonfly issues:
https://github.com/dragonflydb/dragonfly/issues
Sorry, something went wrong.
No branches or pull requests
Hi.
Dragonfly Version: v1.27.1
The HMGET command returns a value only for the first unique key.
Reproduce:
Expected behavior:
Expects behavior similar to that of Redis and KeyDB
The text was updated successfully, but these errors were encountered: