質問

I set a key to 0 and get the bitcount using the below command in redis

 set result 0
 bitcount result

I get the output to be 2 instead of 0. When i set the result to any other number and print the bitcount I get the correct number of set bits with the addition of 2. Why is 2 by default added to the bitcount's result?

役に立ちましたか?

解決

Because result holds the character "0" which is the integer 48 in decimal, which is 110000 in binary.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top