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
From version 7.0.0, Redis added the BYTE|BIT option for BITCOUNT.
For example:
127.0.0.1:6379> setbit mykey 7 1 (integer) 0 127.0.0.1:6379> setbit mykey 6 1 (integer) 0 127.0.0.1:6379> bitcount mykey 6 7 (integer) 0 127.0.0.1:6379> bitcount mykey 6 7 bit (integer) 2 127.0.0.1:6379> bitcount mykey 6 7 byte (integer) 0
But go-redis does't support this option in lastest version.
The text was updated successfully, but these errors were encountered:
Can be closed by #2887
Sorry, something went wrong.
No branches or pull requests
From version 7.0.0, Redis added the BYTE|BIT option for BITCOUNT.
For example:
But go-redis does't support this option in lastest version.
The text was updated successfully, but these errors were encountered: