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 45 46 47 48 49 50 51 52
|
# RedisBloom `cf` commands (12/12 implemented)
## [CF.ADD](https://redis.io/commands/cf.add/)
Adds an item to a Cuckoo Filter
## [CF.ADDNX](https://redis.io/commands/cf.addnx/)
Adds an item to a Cuckoo Filter if the item did not exist previously.
## [CF.COUNT](https://redis.io/commands/cf.count/)
Return the number of times an item might be in a Cuckoo Filter
## [CF.DEL](https://redis.io/commands/cf.del/)
Deletes an item from a Cuckoo Filter
## [CF.EXISTS](https://redis.io/commands/cf.exists/)
Checks whether one or more items exist in a Cuckoo Filter
## [CF.INFO](https://redis.io/commands/cf.info/)
Returns information about a Cuckoo Filter
## [CF.INSERT](https://redis.io/commands/cf.insert/)
Adds one or more items to a Cuckoo Filter. A filter will be created if it does not exist
## [CF.INSERTNX](https://redis.io/commands/cf.insertnx/)
Adds one or more items to a Cuckoo Filter if the items did not exist previously. A filter will be created if it does not exist
## [CF.LOADCHUNK](https://redis.io/commands/cf.loadchunk/)
Restores a filter previously saved using SCANDUMP
## [CF.MEXISTS](https://redis.io/commands/cf.mexists/)
Checks whether one or more items exist in a Cuckoo Filter
## [CF.RESERVE](https://redis.io/commands/cf.reserve/)
Creates a new Cuckoo Filter
## [CF.SCANDUMP](https://redis.io/commands/cf.scandump/)
Begins an incremental save of the bloom filter
|