Redis Bloomfilter v0.1.2 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

Adds the LUA scripts to Redis. This is idempotent and can be called safely any number of times

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.

Adds the LUA scripts to Redis. This is idempotent and can be called safely any number of times.

Inserts the given key into the bloom filter.