redis 数据库中的 getbit 和 setbit 和 bitcount
程序员文章站
2022-07-05 20:37:50
...
设置: SETBIT key offset value
查询: GETBIT key offset
查询长度: BITCOUNT key
本机windows:0>setbit cyl 1 1
"0"
本机windows:0>setbit cyl 2 1
"0"
本机windows:0>setbit cyl 3 0
"0"
本机windows:0>setbit cyl 4 1
"0"
本机windows:0>setbit cyl 10 1
"0"
本机windows:0>bitcount cyl
"4"
本机windows:0>getbit cyl 10
"1"
本机windows:0>getbit cyl 3
"0"
公司华为云:0>getbit article:listdelrepeat 100230
"1"
公司华为云:0>getbit article:listdelrepeat 103453252
"1"
公司华为云:0>getbit article:listdelrepeat 100233233
"1"
公司华为云:0>bitcount article:listdelrepeat
"2111244207"