Uses of Class
org.apache.lucene.index.SortedDocValues
-
Packages that use SortedDocValues 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. -
-
Uses of SortedDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return SortedDocValues Modifier and Type Method Description abstract SortedDocValues
DocValuesProducer. getSorted(FieldInfo field)
ReturnsSortedDocValues
for this field.Method parameters in org.apache.lucene.codecs with type arguments of type SortedDocValues Modifier and Type Method Description void
DocValuesConsumer. mergeSortedField(FieldInfo fieldInfo, MergeState mergeState, List<SortedDocValues> toMerge)
Merges the sorted docvalues fromtoMerge
.Constructors in org.apache.lucene.codecs with parameters of type SortedDocValues Constructor Description SortedDocsWithField(SortedDocValues in, int maxDoc)
Creates aBits
returning true if the document has a value -
Uses of SortedDocValues in org.apache.lucene.codecs.lucene45
Methods in org.apache.lucene.codecs.lucene45 that return SortedDocValues Modifier and Type Method Description SortedDocValues
Lucene45DocValuesProducer. getSorted(FieldInfo field)
-
Uses of SortedDocValues in org.apache.lucene.index
Subclasses of SortedDocValues in org.apache.lucene.index Modifier and Type Class Description static class
MultiDocValues.MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMapFields in org.apache.lucene.index declared as SortedDocValues Modifier and Type Field Description static SortedDocValues
SortedDocValues. EMPTY
An empty SortedDocValues which returnsBytesRef.EMPTY_BYTES
for every documentSortedDocValues[]
MultiDocValues.MultiSortedDocValues. values
leaf valuesMethods in org.apache.lucene.index that return SortedDocValues Modifier and Type Method Description abstract SortedDocValues
AtomicReader. getSortedDocValues(String field)
ReturnsSortedDocValues
for this field, or null if noSortedDocValues
were indexed for this field.SortedDocValues
FilterAtomicReader. getSortedDocValues(String field)
SortedDocValues
ParallelAtomicReader. getSortedDocValues(String field)
SortedDocValues
SegmentReader. getSortedDocValues(String field)
SortedDocValues
SingletonSortedSetDocValues. getSortedDocValues()
Return the wrappedSortedDocValues
SortedDocValues
SlowCompositeReaderWrapper. getSortedDocValues(String field)
static SortedDocValues
MultiDocValues. getSortedValues(IndexReader r, String field)
Returns a SortedDocValues for a reader's docvalues (potentially doing extremely slow things).Constructors in org.apache.lucene.index with parameters of type SortedDocValues Constructor Description SingletonSortedSetDocValues(SortedDocValues in)
Creates a multi-valued view over the provided SortedDocValues -
Uses of SortedDocValues in org.apache.lucene.search
Methods in org.apache.lucene.search that return SortedDocValues Modifier and Type Method Description SortedDocValues
FieldCache. getTermsIndex(AtomicReader reader, String field)
Checks the internal cache for an appropriate entry, and if none is found, reads the term values infield
and returns aSortedDocValues
instance, providing methods to retrieve sort ordinals and terms (as a ByteRef) per document.SortedDocValues
FieldCache. getTermsIndex(AtomicReader reader, String field, float acceptableOverheadRatio)
Expert: just likeFieldCache.getTermsIndex(AtomicReader,String)
, but you can specify whether more RAM should be consumed in exchange for faster lookups (default is "true").
-