BF.INFO
语法
BF.INFO key [CAPACITY | SIZE | FILTERS | ITEMS | EXPANSION]
- 可用:
- Redis 堆栈 / Bloom 1.0.0
- 时间复杂度:
- O(1)
返回有关 Bloom 筛选器的信息。
必需参数
key
是 Bloom 过滤器的键名称。
可选参数
CAPACITY
返回在需要缩放之前可以存储在此 Bloom 过滤器中的唯一项目数(包括已添加的项目)。
SIZE
Return the memory size:为此 Bloom 过滤器分配的字节数。
FILTERS
返回子过滤器的数量。
ITEMS
返回已添加到此 Bloom 过滤器并被检测为唯一的项目数(导致在至少一个子过滤器中设置至少一位的项目)。
EXPANSION
返回扩展速率。
如果未指定可选参数:返回所有信息字段。
返回值
如果未指定可选参数,则返回以下回复之一:
- 具有参数名称 (Simple string reply) 和值 (Integer reply) 对的数组回复
- [] 出错时(参数无效、键不存在、键类型错误等)
指定可选参数时,返回以下回复之一:
- 整数回复 - 参数值
- [] 出错时(参数无效、键不存在、键类型错误等)
例子
redis> BF.ADD bf1 observation1
(integer) 1
redis> BF.INFO bf1
1) Capacity
2) (integer) 100
3) Size
4) (integer) 240
5) Number of filters
6) (integer) 1
7) Number of items inserted
8) (integer) 1
9) Expansion rate
10) (integer) 2
redis> BF.INFO bf1 CAPACITY
1) (integer) 100