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 BinaryDocValuesReturnsBinaryDocValuesfor this field.Method parameters in org.apache.lucene.codecs with type arguments of type BinaryDocValuesModifier and TypeMethodDescriptionvoidDocValuesConsumer.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 classImplements SortedDocValues over n subs, using an OrdinalMapclassA per-document byte[] with presorted values.Fields in org.apache.lucene.index declared as BinaryDocValuesModifier and TypeFieldDescriptionstatic final BinaryDocValuesBinaryDocValues.EMPTYAn empty BinaryDocValues which returnsBytesRef.EMPTY_BYTESfor every documentMethods in org.apache.lucene.index that return BinaryDocValuesModifier and TypeMethodDescriptionabstract BinaryDocValuesAtomicReader.getBinaryDocValues(String field) ReturnsBinaryDocValuesfor this field, or null if noBinaryDocValueswere indexed for this field.FilterAtomicReader.getBinaryDocValues(String field) ParallelAtomicReader.getBinaryDocValues(String field) SegmentReader.getBinaryDocValues(String field) SlowCompositeReaderWrapper.getBinaryDocValues(String field) static BinaryDocValuesMultiDocValues.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 infieldand returns aBinaryDocValuesinstance, 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").