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

unexpected result in hgetall with RESP3 #491

Closed
mperham opened this issue Jun 24, 2024 · 1 comment · Fixed by #503
Closed

unexpected result in hgetall with RESP3 #491

mperham opened this issue Jun 24, 2024 · 1 comment · Fixed by #503
Assignees

Comments

@mperham
Copy link

mperham commented Jun 24, 2024

Describe the bug

I'm using Ruby's redis-client gem to connect to Garnet.

Redis is properly returning a Hash, whereas Garnet is unexpectedly returning an Array.

Steps to reproduce the bug

> gem install redis-client
> irb
require "redis-client"
c = RedisClient.new
c.call "hset", "foo", "bar", "mike"
c.call "hgetall", "foo"
{"bar"=>"mike"} # Redis 7.2.3
["bar", "mike"] # Garnet main

Expected behavior

No response

Screenshots

No response

Release version

main

IDE

No response

OS version

No response

Additional context

No response

@badrishc
Copy link
Contributor

badrishc commented Jun 28, 2024

We are adding per-operator RESP3 support on an incremental and on-demand basis. Have covered HGETALL in the linked PR.

@github-actions github-actions bot locked and limited conversation to collaborators Aug 28, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants