You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that it is caused by the lettuce core, because its offset type is int. But confusingly,, it is declared as long type at some places in lettuce core. So, I also submitted a issue on the lettuce github (link).
Is there any reason to declare offset as type int?
I can pass a long value offset with redis-cli.
The text was updated successfully, but these errors were encountered:
I have an issue when I try to do bitfield with set subcommands.
But, when I pass offset argument with a long value, it emits an error with message,
When I pass integer value offset, it succeeds.
It seems that it converts the offset value from long to int type in
LettuceConverters.java
.I think that it is caused by the lettuce core, because its offset type is
int
. But confusingly,, it is declared as long type at some places in lettuce core. So, I also submitted a issue on the lettuce github (link).Is there any reason to declare offset as type
int
?I can pass a long value offset with redis-cli.
The text was updated successfully, but these errors were encountered: