提示:如果 offset 偏移量的值较大,计算机进行内存分配时可能会造成 Redis 服务器被阻塞。
setbit key offset value
127.0.0.1:6379> SETBIT mybit 0 1 (integer) 0 127.0.0.1:6379> SETBIT mybit 1 0 (integer) 0 127.0.0.1:6379> SETBIT mybit 2 1 (integer) 0 127.0.0.1:6379> GETBIT mybit 200 #默认初始化为0 (integer) 0
本文链接:http://task.lmcjl.com/news/19068.html