You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/06/09 12:27:38 UTC

svn commit: r1348348 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/IndexSearcher.java

Author: mikemccand
Date: Sat Jun  9 10:27:37 2012
New Revision: 1348348

URL: http://svn.apache.org/viewvc?rev=1348348&view=rev
Log:
remove stale javadocs

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/IndexSearcher.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/IndexSearcher.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/IndexSearcher.java?rev=1348348&r1=1348347&r2=1348348&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/IndexSearcher.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/IndexSearcher.java Sat Jun  9 10:27:37 2012
@@ -263,12 +263,6 @@ public class IndexSearcher {
    *
    * <p>{@link Collector#collect(int)} is called for every matching
    * document.
-   * <br>Collector-based access to remote indexes is discouraged.
-   *
-   * <p>Applications should only use this if they need <i>all</i> of the
-   * matching documents.  The high-level search API ({@link
-   * IndexSearcher#search(Query, Filter, int)}) is usually more efficient, as it skips
-   * non-high-scoring hits.
    *
    * @param query to match documents
    * @param filter if non-null, used to permit documents to be collected.
@@ -284,13 +278,6 @@ public class IndexSearcher {
   *
   * <p>{@link Collector#collect(int)} is called for every matching document.
   *
-  * <p>Applications should only use this if they need <i>all</i> of the
-  * matching documents.  The high-level search API ({@link
-  * IndexSearcher#search(Query, int)}) is usually more efficient, as it skips
-  * non-high-scoring hits.
-  * <p>Note: The <code>score</code> passed to this method is a raw score.
-  * In other words, the score will not necessarily be a float whose value is
-  * between 0 and 1.
   * @throws BooleanQuery.TooManyClauses
   */
   public void search(Query query, Collector results)
@@ -559,12 +546,6 @@ public class IndexSearcher {
    * 
    * <p>
    * {@link Collector#collect(int)} is called for every document. <br>
-   * Collector-based access to remote indexes is discouraged.
-   * 
-   * <p>
-   * Applications should only use this if they need <i>all</i> of the matching
-   * documents. The high-level search API ({@link IndexSearcher#search(Query,int)}) is
-   * usually more efficient, as it skips non-high-scoring hits.
    * 
    * <p>
    * NOTE: this method executes the searches on all given leaves exclusively.