We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
#3305 adds HIncrByFloat but removes the normal HIncrBy, that used int64. This breaks older clients that use UniversalClients.
UniversalClient
I don't think this was intentional, since the function still exists. Just the interface is not exposing it anymore.
HashCmdable should have HIncrBy like so -
type HashCmdable interface { ... HIncrBy(ctx context.Context, key, field string, incr int64) *IntCmd HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd ... }
The text was updated successfully, but these errors were encountered:
@AvyChanna Thank you for reporting! Looking into this.
Sorry, something went wrong.
Fixed by #3344
No branches or pull requests
#3305 adds HIncrByFloat but removes the normal HIncrBy, that used int64. This breaks older clients that use
UniversalClient
s.I don't think this was intentional, since the function still exists. Just the interface is not exposing it anymore.
Expected Behavior
HashCmdable should have HIncrBy like so -
The text was updated successfully, but these errors were encountered: