Class SortedDocValues
A per-document byte[] with presorted values.
Per-Document values in a SortedDocValues are deduplicated, dereferenced, and sorted into a dictionary of unique values. A pointer to the dictionary value (ordinal) can be retrieved for each document. Ordinals are dense and in increasing sorted order.
Assembly: DistributedLucene.Net.dll
Syntax
public abstract class SortedDocValues : BinaryDocValues
Constructors
Name | Description |
---|---|
SortedDocValues() | Sole constructor. (For invocation by subclass constructors, typically implicit.) |
Properties
Name | Description |
---|---|
ValueCount | Returns the number of unique values. |
Methods
Name | Description |
---|---|
Get(Int32, BytesRef) | |
GetOrd(Int32) | Returns the ordinal for the specified docID. |
GetTermsEnum() | Returns a TermsEnum over the values. The enum supports Ord and SeekExact(Int64). |
LookupOrd(Int32, BytesRef) | Retrieves the value for the specified ordinal. |
LookupTerm(BytesRef) | If |