Redis Setbit 命令

Redis 字符串(string)

Redis Setbit 命令用于對 key 所儲存的字符串值,設置或清除指定偏移量上的位(bit)。

語法

redis Setbit 命令基本語法如下:

redis 127.0.0.1:6379> Setbit KEY_NAME OFFSET

可用版本

>= 2.2.0

返回值

指定偏移量原來儲存的位。

實例

redis> SETBIT bit 10086 1
(integer) 0

redis> GETBIT bit 10086
(integer) 1

redis> GETBIT bit 100   # bit 默認被初始化為 0
(integer) 0

Redis 字符串(string)