0

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?

4

1 回答 1

4

因为result保存十进制"0"整数的字符,二进制的字符。48110000

于 2014-03-04T14:23:52.337 回答