Package | Description |
---|---|
org.apache.lucene.facet.search |
Faceted Search API
API for faceted search has several interfaces - simple, top level ones, adequate for most users,
and advanced, more complicated ones, for the more advanced users.
|
org.apache.lucene.facet.search.sampling |
Sampling for facets accumulation
|
Modifier and Type | Class and Description |
---|---|
class |
AdaptiveFacetsAccumulator
FacetsAccumulator whose behavior regarding complements, sampling,
etc. is not set up front but rather is determined at accumulation time
according to the statistics of the accumulated set of documents and the
index. |
class |
SamplingWrapper
Wrap any Facets Accumulator with sampling.
|
class |
StandardFacetsAccumulator
Standard implementation for
FacetsAccumulator , utilizing partitions to save on memory. |
Modifier and Type | Field and Description |
---|---|
protected FacetsAccumulator |
FacetsCollector.facetsAccumulator |
Modifier and Type | Method and Description |
---|---|
protected FacetsAccumulator |
FacetsCollector.initFacetsAccumulator(FacetSearchParams facetSearchParams,
IndexReader indexReader,
TaxonomyReader taxonomyReader)
Create the
FacetsAccumulator to be used. |
Constructor and Description |
---|
SamplingWrapper(FacetsAccumulator delegee,
Sampler sampler) |
Modifier and Type | Class and Description |
---|---|
class |
SamplingAccumulator
Facets accumulation with sampling.
|