Blocks within redis bloom
List of all the block within the redis bloom group. If you're running an older core version, there may be groups listed here that are not available to you (yet).
condition v14.0.4 Create a new Bloom filter with a given error rate and initial capacity. The filter will auto-scale if capacity is exceeded. bf exists condition v14.0.4 Check if an item may exist in a Bloom filter. Returns true if the item may exist (with the configured false-positive rate), false if it definitely does not exist. bf madd array v14.0.4 Add multiple items to a Bloom filter at once. Creates the filter if it does not exist. bf add condition v14.0.4 Add an item to a Bloom filter. Creates the filter if it does not exist. bf mexists array v14.0.4 Check if multiple items may exist in a Bloom filter. Returns an array of booleans. Back to
redis Return to the main group to view all sub-groups
