WritableRetouchedBloomFilter@Public @Stable public class BloomFilter extends Filter
The Bloom filter is a data structure that was introduced in 1970 and that has been adopted by the networking research community in the past decade thanks to the bandwidth efficiencies that it offers for the transmission of set membership information between networked hosts. A sender encodes the information into a bit vector, the Bloom filter, that is more compact than a conventional representation. Computation and space costs for construction are linear in the number of elements. The receiver uses the filter to test whether various elements are members of the set. Though the filter will occasionally return a false positive, it will never return a false negative. When creating the filter, the sender can choose its desired point in a trade-off between the false positive rate and the size.
Originally created by European Commission One-Lab Project 034819.
hash, hashType, nbHash, vectorSize| Constructor | Description |
|---|---|
BloomFilter() |
Default constructor - use with readFields
|
BloomFilter(int vectorSize,
int nbHash,
int hashType) |
Constructor
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
add(Key key) |
Adds a key to this filter.
|
void |
and(Filter filter) |
Peforms a logical AND between this filter and a specified filter.
|
int |
getVectorSize() |
|
boolean |
membershipTest(Key key) |
Determines wether a specified key belongs to this filter.
|
void |
not() |
Performs a logical NOT on this filter.
|
void |
or(Filter filter) |
Peforms a logical OR between this filter and a specified filter.
|
void |
readFields(java.io.DataInput in) |
Deserialize the fields of this object from
in. |
java.lang.String |
toString() |
|
void |
write(java.io.DataOutput out) |
Serialize the fields of this object to
out. |
void |
xor(Filter filter) |
Peforms a logical XOR between this filter and a specified filter.
|
public BloomFilter()
public BloomFilter(int vectorSize,
int nbHash,
int hashType)
vectorSize - The vector size of this filter.nbHash - The number of hash function to consider.hashType - type of the hashing function (see
Hash).public void and(Filter filter)
FilterInvariant: The result is assigned to this filter.
public boolean membershipTest(Key key)
FiltermembershipTest in class Filterkey - The key to test.public void not()
FilterThe result is assigned to this filter.
public void or(Filter filter)
FilterInvariant: The result is assigned to this filter.
public void xor(Filter filter)
FilterInvariant: The result is assigned to this filter.
public java.lang.String toString()
toString in class java.lang.Objectpublic int getVectorSize()
public void write(java.io.DataOutput out)
throws java.io.IOException
Writableout.public void readFields(java.io.DataInput in)
throws java.io.IOException
Writablein.
For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields in interface WritablereadFields in class Filterin - DataInput to deseriablize this object from.java.io.IOException - any other problem for readFields.Copyright © 2008–2025 Apache Software Foundation. All rights reserved.