Class MultiDocValues
A wrapper for Composite
NOTE: for multi readers, you'll get better performance by gathering the sub readers using Context to get the atomic leaves and then operate per-AtomicReader, instead of using this class.
NOTE: this is very costly.
Inheritance
Inherited Members
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
public static class MultiDocValues
Methods
| Improve this Doc View SourceGetBinaryValues(IndexReader, String)
Returns a Binary
This is a slow way to access binary values. Instead, access them per-segment
with Get
Declaration
public static BinaryDocValues GetBinaryValues(IndexReader r, string field)
Parameters
Type | Name | Description |
---|---|---|
Index |
r | |
System. |
field |
Returns
Type | Description |
---|---|
Binary |
GetDocsWithField(IndexReader, String)
Returns a IBits for a reader's docsWithField (potentially merging on-the-fly)
This is a slow way to access this bitset. Instead, access them per-segment
with Get
Declaration
public static IBits GetDocsWithField(IndexReader r, string field)
Parameters
Type | Name | Description |
---|---|---|
Index |
r | |
System. |
field |
Returns
Type | Description |
---|---|
IBits |
GetNormValues(IndexReader, String)
Returns a Numeric
This is a slow way to access normalization values. Instead, access them per-segment
with Get
Declaration
public static NumericDocValues GetNormValues(IndexReader r, string field)
Parameters
Type | Name | Description |
---|---|---|
Index |
r | |
System. |
field |
Returns
Type | Description |
---|---|
Numeric |
GetNumericValues(IndexReader, String)
Returns a Numeric
This is a slow way to access numeric values. Instead, access them per-segment
with Get
Declaration
public static NumericDocValues GetNumericValues(IndexReader r, string field)
Parameters
Type | Name | Description |
---|---|---|
Index |
r | |
System. |
field |
Returns
Type | Description |
---|---|
Numeric |
GetSortedSetValues(IndexReader, String)
Returns a Sorted
This is an extremely slow way to access sorted values. Instead, access them per-segment
with Get
Declaration
public static SortedSetDocValues GetSortedSetValues(IndexReader r, string field)
Parameters
Type | Name | Description |
---|---|---|
Index |
r | |
System. |
field |
Returns
Type | Description |
---|---|
Sorted |
GetSortedValues(IndexReader, String)
Returns a Sorted
this is an extremely slow way to access sorted values. Instead, access them per-segment
with Get
Declaration
public static SortedDocValues GetSortedValues(IndexReader r, string field)
Parameters
Type | Name | Description |
---|---|---|
Index |
r | |
System. |
field |
Returns
Type | Description |
---|---|
Sorted |