Uses of Class
org.apache.lucene.index.BinaryDocValues
Packages that use BinaryDocValues
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
Lucene 4.5 file format.
Code to maintain and access indices.
Code to search indices.
-
Uses of BinaryDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return BinaryDocValuesModifier and TypeMethodDescriptionabstract BinaryDocValues
ReturnsBinaryDocValues
for this field.Method parameters in org.apache.lucene.codecs with type arguments of type BinaryDocValuesModifier and TypeMethodDescriptionvoid
DocValuesConsumer.mergeBinaryField
(FieldInfo fieldInfo, MergeState mergeState, List<BinaryDocValues> toMerge, List<Bits> docsWithField) Merges the binary docvalues fromtoMerge
. -
Uses of BinaryDocValues in org.apache.lucene.codecs.lucene45
Methods in org.apache.lucene.codecs.lucene45 that return BinaryDocValuesModifier and TypeMethodDescription -
Uses of BinaryDocValues in org.apache.lucene.index
Subclasses of BinaryDocValues in org.apache.lucene.indexModifier and TypeClassDescriptionstatic class
Implements SortedDocValues over n subs, using an OrdinalMapclass
A per-document byte[] with presorted values.Fields in org.apache.lucene.index declared as BinaryDocValuesModifier and TypeFieldDescriptionstatic final BinaryDocValues
BinaryDocValues.EMPTY
An empty BinaryDocValues which returnsBytesRef.EMPTY_BYTES
for every documentMethods in org.apache.lucene.index that return BinaryDocValuesModifier and TypeMethodDescriptionabstract BinaryDocValues
AtomicReader.getBinaryDocValues
(String field) ReturnsBinaryDocValues
for this field, or null if noBinaryDocValues
were indexed for this field.FilterAtomicReader.getBinaryDocValues
(String field) ParallelAtomicReader.getBinaryDocValues
(String field) SegmentReader.getBinaryDocValues
(String field) 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) -
Uses of BinaryDocValues in org.apache.lucene.search
Methods in org.apache.lucene.search that return BinaryDocValuesModifier and TypeMethodDescriptionFieldCache.getTerms
(AtomicReader reader, String field, boolean setDocsWithField) Checks the internal cache for an appropriate entry, and if none is found, reads the term values infield
and returns aBinaryDocValues
instance, providing a method to retrieve the term (as a BytesRef) per document.FieldCache.getTerms
(AtomicReader reader, String field, boolean setDocsWithField, float acceptableOverheadRatio) Expert: just likeFieldCache.getTerms(AtomicReader,String,boolean)
, but you can specify whether more RAM should be consumed in exchange for faster lookups (default is "true").