高炉。存在

语法
BF.EXISTS key item
可用:
Redis 堆栈 / Bloom 1.0.0
时间复杂度:
O(k),其中 k 是最后一个子过滤器使用的哈希函数的数量

确定是否将给定项目添加到 Bloom 过滤器中。

此命令类似于BF.MEXISTS,但只能选中一项。

必需参数

key

是 Bloom 过滤器的键名称。

item

是要检查的项目。

返回值

返回以下回复之一:

  • Integer 回复,其中1表示,很有可能,item已添加到过滤器中,并且0意味着key不存在,或者item未添加到筛选器中。
  • [] 出错时(参数无效、键类型错误等)

例子

redis> BF.ADD bf item1
(integer) 1
redis> BF.EXISTS bf item1
(integer) 1
redis> BF.EXISTS bf item2
(integer) 0

RATE THIS PAGE
Back to top ↑