BF.EXISTS
BF.EXISTS key item
Determines whether an item may exist in the Bloom Filter or not.
Integer reply - where "1" value means the item may exist in the filter, and a "0" value means it does not exist in the filter.
redis> BF.EXISTS bf item1 (integer) 1 redis> BF.EXISTS bf item_new (integer) 0
© 2006–2022 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/bf.exists/