mirror of https://github.com/apache/lucene.git
Correct source of javadoc warnings
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@164935 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6952e96648
commit
3b44de80e6
|
@ -268,6 +268,8 @@ public class MultiSearcher extends Searcher {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Create weight in multiple index scenario.
|
||||||
|
*
|
||||||
* Distributed query processing is done in the following steps:
|
* Distributed query processing is done in the following steps:
|
||||||
* 1. rewrite query
|
* 1. rewrite query
|
||||||
* 2. extract necessary terms
|
* 2. extract necessary terms
|
||||||
|
|
|
@ -152,11 +152,11 @@ public class ParallelMultiSearcher extends MultiSearcher {
|
||||||
* Searcher#search(Query)}) is usually more efficient, as it skips
|
* Searcher#search(Query)}) is usually more efficient, as it skips
|
||||||
* non-high-scoring hits.
|
* non-high-scoring hits.
|
||||||
*
|
*
|
||||||
* @param query to match documents
|
* @param weight to match documents
|
||||||
* @param filter if non-null, a bitset used to eliminate some documents
|
* @param filter if non-null, a bitset used to eliminate some documents
|
||||||
* @param results to receive hits
|
* @param results to receive hits
|
||||||
*
|
*
|
||||||
* TODO: parallelize this one too
|
* @todo parallelize this one too
|
||||||
*/
|
*/
|
||||||
public void search(Weight weight, Filter filter, final HitCollector results)
|
public void search(Weight weight, Filter filter, final HitCollector results)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
|
|
Loading…
Reference in New Issue