BF.EXISTS
Syntax
BF.EXISTS key item
- Available in:
- Redis Open Source / Bloom 1.0.0
- Time complexity:
- O(k), where k is the number of hash functions used by the last sub-filter
- ACL categories:
-
@bloom,@read,@slow,
Determines whether a given item was added to a Bloom filter.
This command is similar to BF.MEXISTS, except that only one item can be checked.
Required arguments
key
is key name for a Bloom filter.
item
is an item to check.
Return value
Returns one of these replies:
- Integer reply, where
1means that, with high probability,itemwas already added to the filter, and0means thatkeydoes not exist or thatitemhad not been added to the filter. - [] on error (invalid arguments, wrong key type, etc.)
Examples
redis> BF.ADD bf item1
(integer) 1
redis> BF.EXISTS bf item1
(integer) 1
redis> BF.EXISTS bf item2
(integer) 0