Skip to content
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

[BUG] HMGET with none-unique keys #901

Open
Gasillo opened this issue Mar 4, 2025 · 1 comment
Open

[BUG] HMGET with none-unique keys #901

Gasillo opened this issue Mar 4, 2025 · 1 comment

Comments

@Gasillo
Copy link

Gasillo commented Mar 4, 2025

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

@Gasillo Gasillo changed the title [BUG] HSET with none-unique keys [BUG] HMGET with none-unique keys Mar 5, 2025
@keithchew
Copy link

@Gasillo you should be posting this to the dragonfly issues:

https://github.com/dragonflydb/dragonfly/issues

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants