- get(int) - Method in class orestes.bloomfilter.redis.RedisBitSet
-
- getBitSet() - Method in class orestes.bloomfilter.BloomFilter
-
- getBitsPerElement(int) - Method in class orestes.bloomfilter.BloomFilter
-
Calculates the numbers of Bits per element, based on the expected number
of inserted elements n.
- getBitZeroProbability(int) - Method in class orestes.bloomfilter.BloomFilter
-
Returns the probability that a bit is zero.
- getBulk(int...) - Method in class orestes.bloomfilter.redis.RedisBitSet
-
Fetches the values at the given index positions in a multi transaction.
- getC() - Method in class orestes.bloomfilter.CBloomFilter
-
Returns the number of bits used for counting
- getCryptographicHashFunctionName() - Method in class orestes.bloomfilter.BloomFilter
-
Returns the name of the cryptographic hash function used when the hash
method is HashMethod.Cryptographic.
- getFalsePositiveProbability(int) - Method in class orestes.bloomfilter.BloomFilter
-
Returns the probability of a false positive (approximated):
(1 - e^(-k * insertedElements / m)) ^ k
- getHashMethod() - Method in class orestes.bloomfilter.BloomFilter
-
Returns the hash method used to calculate hash values.
- getK() - Method in class orestes.bloomfilter.BloomFilter
-
Returns the number of hash functions.
- getM() - Method in class orestes.bloomfilter.BloomFilter
-
Returns the size of the bloom filter.
- getRedisKey() - Method in class orestes.bloomfilter.redis.RedisBitSet
-