当前位置: 首页 > 文档资料 > Redis 中文文档 >

2.2.7 GETBIT

优质
小牛编辑
139浏览
2023-12-01

GETBIT key offset

key 所储存的字符串值,获取指定偏移量上的位(bit)。

offset 比字符串值的长度大,或者 key 不存在时,返回 0

可用版本:

>= 2.2.0

时间复杂度:

O(1)

返回值:

字符串值指定偏移量上的位(bit)。

# 对不存在的 key 或者不存在的 offset 进行 GETBIT, 返回 0

redis> EXISTS bit
(integer) 0

redis> GETBIT bit 10086
(integer) 0

# 对已存在的 offset 进行 GETBIT

redis> SETBIT bit 10086 1
(integer) 0

redis> GETBIT bit 10086
(integer) 1