Overload List
Name | Description | |
---|---|---|
Search(Weight, Filter, Collector) | Lower-level search API.
{@link Collector#Collect(int)} is called for every document. Collector-based access to remote indexes is discouraged. Applications should only use this if they need all of the matching documents. The high-level search API ({@link Searcher#Search(Query)}) is usually more efficient, as it skips non-high-scoring hits. | |
Search(Weight, Filter, HitCollector) | Obsolete. Lower-level search API.
{@link HitCollector#Collect(int,float)} is called for every non-zero
scoring document.
HitCollector-based access to remote indexes is discouraged. Applications should only use this if they need all of the matching documents. The high-level search API ({@link Searcher#Search(Query)}) is usually more efficient, as it skips non-high-scoring hits. | |
Search(Weight, Filter, Int32) | Expert: Low-level search implementation. Finds the top CopyC# n CopyC# query CopyC# filter | |
Search(Weight, Filter, Int32, Sort) | Expert: Low-level search implementation with arbitrary sorting. Finds
the top CopyC# n CopyC# query CopyC# filter CopyC# sort |