Package | Description |
---|---|
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Field and Description |
---|---|
OrdinalMap |
MultiDocValues.MultiSortedDocValues.mapping
ordinal map mapping ords from
values to global ord space |
OrdinalMap |
MultiDocValues.MultiSortedSetDocValues.mapping
ordinal map mapping ords from
values to global ord space |
Modifier and Type | Method and Description |
---|---|
static OrdinalMap |
OrdinalMap.build(IndexReader.CacheKey owner,
SortedDocValues[] values,
float acceptableOverheadRatio)
Create an ordinal map that uses the number of unique values of each
SortedDocValues instance as a weight. |
static OrdinalMap |
OrdinalMap.build(IndexReader.CacheKey owner,
SortedSetDocValues[] values,
float acceptableOverheadRatio)
Create an ordinal map that uses the number of unique values of each
SortedSetDocValues instance as a weight. |
static OrdinalMap |
OrdinalMap.build(IndexReader.CacheKey owner,
TermsEnum[] subs,
long[] weights,
float acceptableOverheadRatio)
Creates an ordinal map that allows mapping ords to/from a merged
space from
subs . |
Constructor and Description |
---|
MultiSortedDocValues(SortedDocValues[] values,
int[] docStarts,
OrdinalMap mapping,
long totalCost)
Creates a new MultiSortedDocValues over
values |
MultiSortedSetDocValues(SortedSetDocValues[] values,
int[] docStarts,
OrdinalMap mapping,
long totalCost)
Creates a new MultiSortedSetDocValues over
values |
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.