Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.lucene45 |
Lucene 4.5 file format.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
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 |
Lucene45DocValuesProducer.getBinary(FieldInfo field) |
Modifier and Type | Class and Description |
---|---|
static class |
MultiDocValues.MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMap
|
class |
SortedDocValues
A per-document byte[] with presorted values.
|
Modifier and Type | Field and Description |
---|---|
static BinaryDocValues |
BinaryDocValues.EMPTY
An empty BinaryDocValues which returns
BytesRef.EMPTY_BYTES for every document |
Modifier and Type | Method and Description |
---|---|
BinaryDocValues |
SegmentReader.getBinaryDocValues(String field) |
BinaryDocValues |
FilterAtomicReader.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 |
ParallelAtomicReader.getBinaryDocValues(String field) |
BinaryDocValues |
SlowCompositeReaderWrapper.getBinaryDocValues(String field) |
static BinaryDocValues |
MultiDocValues.getBinaryValues(IndexReader r,
String field)
Returns a BinaryDocValues for a reader's docvalues (potentially merging on-the-fly)
|
Modifier and Type | Method and Description |
---|---|
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-2014 Apache Software Foundation. All Rights Reserved.