Package org.apache.lucene.index.sorter

Provides index sorting capablities.

See: Description

Package org.apache.lucene.index.sorter Description

Provides index sorting capablities. The application can use one of the pre-existing Sorter implementations, e.g. to sort by a NumericDocValuesSorter or reverse the order of the documents. Additionally, the application can implement a custom Sorter which returns a permutation on a source AtomicReader's document IDs, to sort the input documents by additional criteria.

SortingMergePolicy can be used to make Lucene sort segments before merging them. This will ensure that every segment resulting from a merge will be sorted according to the provided Sorter. This however makes merging and thus indexing slower.

Sorted segments allow for early query termination when the sort order matches index order. This makes query execution faster since not all documents need to be visited. Please note that this is an expert feature and should not be used without a deep understanding of Lucene merging and document collection.

Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.