Class SortedSetSortField
SortField for SortedSetDocValues.
A SortedSetDocValues contains multiple values for a field, so sorting with this technique "selects" a value as the representative sort value for the document.
By default, the minimum value in the set is selected as the sort value, but this can be customized. Selectors other than the default do have some limitations (see below) to ensure that all selections happen in constant-time for performance.
Like sorting by string, this also supports sorting missing values as first or last, via MissingValue.
Limitations:
- Fields containing System.Int32.MaxValue or more unique values are unsupported.
- Selectors other than the default MIN require optional codec support. However several codecs provided by Lucene, including the current default codec, support this.
Inherited Members
Namespace: Lucene.Net.Sandbox.Queries
Assembly: Lucene.Net.Sandbox.dll
Syntax
public class SortedSetSortField : SortField
Constructors
| Improve this Doc View SourceSortedSetSortField(String, Boolean)
Creates a sort, possibly in reverse, by the minimum value in the set for the document.
Declaration
public SortedSetSortField(string field, bool reverse)
Parameters
Type | Name | Description |
---|---|---|
System.String | field | Name of field to sort by. Must not be null. |
System.Boolean | reverse | True if natural order should be reversed. |
SortedSetSortField(String, Boolean, Selector)
Creates a sort, possibly in reverse, specifying how the sort value from the document's set is selected.
Declaration
public SortedSetSortField(string field, bool reverse, Selector selector)
Parameters
Type | Name | Description |
---|---|---|
System.String | field | Name of field to sort by. Must not be null. |
System.Boolean | reverse | True if natural order should be reversed. |
Selector | selector | custom selector for choosing the sort value from the set. NOTE: selectors other than MIN require optional codec support. |
Properties
| Improve this Doc View SourceMissingValue
Set how missing values (the empty set) are sorted.
Note that this must be STRING_FIRST or STRING_LAST.
Declaration
public override object MissingValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Overrides
| Improve this Doc View SourceSelector
Returns the selector in use for this sort
Declaration
public Selector Selector { get; }
Property Value
Type | Description |
---|---|
Selector |
Methods
| Improve this Doc View SourceEquals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceGetComparer(Int32, Int32)
Declaration
public override FieldComparer GetComparer(int numHits, int sortPos)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | numHits | |
System.Int32 | sortPos |
Returns
Type | Description |
---|---|
FieldComparer |
Overrides
| Improve this Doc View SourceGetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Overrides
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |