MultiDocValues
A wrapper for CompositeIndexReader providing access to DocValues.
NOTE: for multi readers, you'll get better performance by gathering the sub readers using IndexReader.getContext to get the atomic leaves and then operate per-LeafReader, instead of using this class.
NOTE: This is very costly.
Types
Implements SortedDocValues over n subs, using an OrdinalMap
Implements MultiSortedSetDocValues over n subs, using an OrdinalMap
Functions
Returns a BinaryDocValues for a reader's docvalues (potentially merging on-the-fly)
Returns a NumericDocValues for a reader's norms (potentially merging on-the-fly).
Returns a NumericDocValues for a reader's docvalues (potentially merging on-the-fly)
Returns a SortedNumericDocValues for a reader's docvalues (potentially merging on-the-fly)
Returns a SortedSetDocValues for a reader's docvalues (potentially doing extremely slow things).
Returns a SortedDocValues for a reader's docvalues (potentially doing extremely slow things).