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
Both start and end are optional, still it should be possible to use BITPOS with start only.
start
end
BITPOS
it is possible to just pass start, the operation will assume that the end is the last byte of the string
redis> SET mykey "\x00\xff\xf0" "OK" redis> BITPOS mykey 1 0 (integer) 8 redis> BITPOS mykey 1 2 (integer) 16
The text was updated successfully, but these errors were encountered:
Introduce BITPOS override to accept start without end position #623
9dc7088
8852809
7e1120d
47e9940
That's fixed now.
Sorry, something went wrong.
No branches or pull requests
Both
start
andend
are optional, still it should be possible to useBITPOS
withstart
only.The text was updated successfully, but these errors were encountered: