Redis Bloomfilter v0.1.0 RedisBloomfilter View Source

RedisBloomfilter is the only entry point that is necessary for public consumption.

Link to this section Summary

Functions

Clears out the bloom filter. This operation should be called cautiously, as there is no recovery of the keyspace

Checks whether the given key is part of the set. This method may return false positives, but should never return a false negative

Inserts the given key into the bloom filter

Link to this section Functions

Clears out the bloom filter. This operation should be called cautiously, as there is no recovery of the keyspace.

Link to this function include?(key, opts \\ []) View Source

Checks whether the given key is part of the set. This method may return false positives, but should never return a false negative.

Inserts the given key into the bloom filter.