1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# RedisBloom `bf` commands (10/10 implemented)
## [BF.ADD](https://redis.io/commands/bf.add/)
Adds an item to a Bloom Filter
## [BF.CARD](https://redis.io/commands/bf.card/)
Returns the cardinality of a Bloom filter
## [BF.EXISTS](https://redis.io/commands/bf.exists/)
Checks whether an item exists in a Bloom Filter
## [BF.INFO](https://redis.io/commands/bf.info/)
Returns information about a Bloom Filter
## [BF.INSERT](https://redis.io/commands/bf.insert/)
Adds one or more items to a Bloom Filter. A filter will be created if it does not exist
## [BF.LOADCHUNK](https://redis.io/commands/bf.loadchunk/)
Restores a filter previously saved using SCANDUMP
## [BF.MADD](https://redis.io/commands/bf.madd/)
Adds one or more items to a Bloom Filter. A filter will be created if it does not exist
## [BF.MEXISTS](https://redis.io/commands/bf.mexists/)
Checks whether one or more items exist in a Bloom Filter
## [BF.RESERVE](https://redis.io/commands/bf.reserve/)
Creates a new Bloom Filter
## [BF.SCANDUMP](https://redis.io/commands/bf.scandump/)
Begins an incremental save of the bloom filter
|