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
The example contains incorrect results at https://redis.io/commands/bitpos/
In my browser (firefox), the webpage shows:
redis> SET mykey "\x00\xff\xf0" "OK" ... redis> BITPOS mykey 1 7 15 BIT (integer) 9
However, the expected result from the BITPOS command is: (integer) 8 which was returned by redis-server v7.0.5
(integer) 8
The text was updated successfully, but these errors were encountered:
Hi @opatomic
Thanks for reporting this issue. There appears to be a mess around the logic that tries to handle bit operations in this app :)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The example contains incorrect results at https://redis.io/commands/bitpos/
In my browser (firefox), the webpage shows:
However, the expected result from the BITPOS command is:
(integer) 8
which was returned by redis-server v7.0.5
The text was updated successfully, but these errors were encountered: