put in warning about fvhq not doing auto resolution on the SortFields passed to it

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@768371 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2009-04-24 17:00:39 +00:00
parent 09c6c1a44c
commit b8bb58c1ca
1 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,11 @@ import org.apache.lucene.util.PriorityQueue;
* Expert: A hit queue for sorting by hits by terms in more than one field.
* Uses <code>FieldCache.DEFAULT</code> for maintaining
* internal term lookup tables.
*
* This class will not resolve SortField.AUTO types, and expects the type
* of all SortFields used for construction to already have been resolved.
* {@link #detectFieldType(IndexReader, String)} is a utility method which
* may be used for field type detection.
*
* <b>NOTE:</b> This API is experimental and might change in
* incompatible ways in the next release.