Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs for testing (simulate old disk formats, wacky theoretical use cases, etc)
|
org.apache.lucene.facet.taxonomy |
Taxonomy of Categories
|
org.apache.lucene.index |
Misc index tools and index support.
|
org.apache.lucene.index.sorter |
Provides index sorting capablities.
|
org.apache.lucene.search |
This package contains a single proximity query, TermAutomatonQuery.
|
Modifier and Type | Method and Description |
---|---|
abstract BinaryDocValues |
DocValuesProducer.getBinary(FieldInfo field)
Returns
BinaryDocValues for this field. |
Modifier and Type | Method and Description |
---|---|
void |
DocValuesConsumer.mergeBinaryField(FieldInfo fieldInfo,
MergeState mergeState,
List<BinaryDocValues> toMerge,
List<Bits> docsWithField)
Merges the binary docvalues from
toMerge . |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
OrdinalMappingAtomicReader.getBinaryDocValues(String field) |
Modifier and Type | Class and Description |
---|---|
static class |
AssertingAtomicReader.AssertingBinaryDocValues
Wraps a BinaryDocValues but with additional asserts
|
static class |
AssertingAtomicReader.AssertingSortedDocValues
Wraps a SortedDocValues but with additional asserts
|
static class |
MultiDocValues.MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMap
|
class |
SortedDocValues
A per-document byte[] with presorted values.
|
Modifier and Type | Method and Description |
---|---|
static BinaryDocValues |
DocValues.emptyBinary()
An empty BinaryDocValues which returns
BytesRef.EMPTY_BYTES for every document |
static BinaryDocValues |
DocValues.getBinary(AtomicReader in,
String field)
Returns BinaryDocValues for the reader, or
DocValues.emptyBinary() if it has none. |
BinaryDocValues |
AssertingAtomicReader.getBinaryDocValues(String field) |
BinaryDocValues |
FieldFilterAtomicReader.getBinaryDocValues(String field) |
BinaryDocValues |
ParallelAtomicReader.getBinaryDocValues(String field) |
abstract BinaryDocValues |
AtomicReader.getBinaryDocValues(String field)
Returns
BinaryDocValues for this field, or
null if no BinaryDocValues were indexed for
this field. |
BinaryDocValues |
SegmentReader.getBinaryDocValues(String field) |
BinaryDocValues |
SlowCompositeReaderWrapper.getBinaryDocValues(String field) |
BinaryDocValues |
FilterAtomicReader.getBinaryDocValues(String field) |
static BinaryDocValues |
MultiDocValues.getBinaryValues(IndexReader r,
String field)
Returns a BinaryDocValues for a reader's docvalues (potentially merging on-the-fly)
|
Constructor and Description |
---|
AssertingBinaryDocValues(BinaryDocValues in,
int maxDoc) |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
SortingAtomicReader.getBinaryDocValues(String field) |
Modifier and Type | Method and Description |
---|---|
protected BinaryDocValues |
FieldComparator.TermValComparator.getBinaryDocValues(AtomicReaderContext context,
String field)
Retrieves the BinaryDocValues for the field in this segment
|
BinaryDocValues |
FieldCache.getTerms(AtomicReader reader,
String field,
boolean setDocsWithField)
Checks the internal cache for an appropriate entry, and if none
is found, reads the term values in
field
and returns a BinaryDocValues instance, providing a
method to retrieve the term (as a BytesRef) per document. |
BinaryDocValues |
FieldCache.getTerms(AtomicReader reader,
String field,
boolean setDocsWithField,
float acceptableOverheadRatio)
Expert: just like
FieldCache.getTerms(AtomicReader,String,boolean) ,
but you can specify whether more RAM should be consumed in exchange for
faster lookups (default is "true"). |
Copyright © 2000–2023 The Apache Software Foundation. All rights reserved.