简体   繁体   中英

Using bitcount command in redis

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?

因为result包含字符"0" ,它是十进制的整数48 ,二进制的110000

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM