You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by ma...@apache.org on 2009/02/19 15:44:53 UTC

svn commit: r745886 - /lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java

Author: markrmiller
Date: Thu Feb 19 14:44:53 2009
New Revision: 745886

URL: http://svn.apache.org/viewvc?rev=745886&view=rev
Log:
update javadoc for allowDocsOutOfOrder

Modified:
    lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java

Modified: lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java?rev=745886&r1=745885&r2=745886&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java Thu Feb 19 14:44:53 2009
@@ -325,9 +325,11 @@
    * </p>
    *
    * <p>
-   * Specifics: By setting this option to true, calls to 
-   * {@link HitCollector#collect(int,float)} might be
-   * invoked first for docid N and only later for docid N-1.
+   * Specifics: By setting this option to true, docid N might be scored
+   * for a single segment before docid N-1. Across multiple segments,
+   * docs may be scored out of order regardless of this setting - it only
+   * applies to scoring a single segment.
+   * 
    * Being static, this setting is system wide.
    * </p>
    */