Package | Description |
---|---|
org.apache.hadoop.io |
Generic i/o code for use when reading and writing data to the network,
to databases, and to files.
|
org.apache.hadoop.util.bloom |
Modifier and Type | Method and Description |
---|---|
Filter |
BloomMapFile.Reader.getBloomFilter()
Retrieve the Bloom filter used by this instance of the Reader.
|
Modifier and Type | Class and Description |
---|---|
class |
BloomFilter
Implements a Bloom filter, as defined by Bloom in 1970.
|
class |
CountingBloomFilter
Implements a counting Bloom filter, as defined by Fan et al.
|
class |
DynamicBloomFilter
Implements a dynamic Bloom filter, as defined in the INFOCOM 2006 paper.
|
class |
RetouchedBloomFilter
Implements a retouched Bloom filter, as defined in the CoNEXT 2006 paper.
|
Modifier and Type | Method and Description |
---|---|
void |
BloomFilter.and(Filter filter) |
void |
CountingBloomFilter.and(Filter filter) |
void |
DynamicBloomFilter.and(Filter filter) |
abstract void |
Filter.and(Filter filter)
Peforms a logical AND between this filter and a specified filter.
|
void |
BloomFilter.or(Filter filter) |
void |
CountingBloomFilter.or(Filter filter) |
void |
DynamicBloomFilter.or(Filter filter) |
abstract void |
Filter.or(Filter filter)
Peforms a logical OR between this filter and a specified filter.
|
void |
BloomFilter.xor(Filter filter) |
void |
CountingBloomFilter.xor(Filter filter) |
void |
DynamicBloomFilter.xor(Filter filter) |
abstract void |
Filter.xor(Filter filter)
Peforms a logical XOR between this filter and a specified filter.
|
Copyright © 2013 Apache Software Foundation. All rights reserved.