Name |
Description |
DuplicateFilter |
Filter to remove duplicate values from search results. WARNING: for this to work correctly, you may have to wrap your reader as it cannot current deduplicate across different index segments. |
SlowFuzzyQuery |
|
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 SetMissingValue(object). Limitations: - Fields containing int.MaxValue or more unique values are unsupported.
- Selectors other than the default Selector.MIN require optional codec support. However several codecs provided by Lucene, including the current default codec, support this.
|
SortedSetSortField.MaxValue |
Wraps a SortedSetDocValues and returns the last ordinal (max) |
SortedSetSortField.MiddleMaxValue |
Wraps a SortedSetDocValues and returns the middle ordinal (or max of the two) |
SortedSetSortField.MiddleMinValue |
Wraps a SortedSetDocValues and returns the middle ordinal (or min of the two) |
SortedSetSortField.MinValue |
Wraps a SortedSetDocValues and returns the first ordinal (min) |
SortedSetSortField.TermOrdValComparatorAnonymousHelper |
|
TestSlowFuzzyQuery |
Tests SlowFuzzyQuery |
TestSlowFuzzyQuery2 |
|
TestSortedSetSortField |
Simple tests for SortedSetSortField |
TestSortedSetSortFieldDocValues |
|
TestSortedSetSortFieldSelectors |
Tests for SortedSetSortField selectors other than MIN, these require optional codec support (random access to ordinals) |