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
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.
> 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
No response
main
The text was updated successfully, but these errors were encountered:
We are adding per-operator RESP3 support on an incremental and on-demand basis. Have covered HGETALL in the linked PR.
Sorry, something went wrong.
badrishc
Successfully merging a pull request may close this issue.
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
Expected behavior
No response
Screenshots
No response
Release version
main
IDE
No response
OS version
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: