javadoc: added example of frange as a filter query

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@880987 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2009-11-16 22:02:59 +00:00
parent cdbcf8aca3
commit fa5fb127ab
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ import org.apache.solr.search.function.*;
* <br><code>incl</code>, include the lower bound: true/false, optional, default=true
* <br><code>incu</code>, include the upper bound: true/false, optional, default=true
* <br>Example: <code>{!frange l=1000 u=50000}myfield</code>
* <br>Filter query example: <code>fq={!frange l=0 u=2.2}sum(user_ranking,editor_ranking)</code>
*/
public class FunctionRangeQParserPlugin extends QParserPlugin {
public static String NAME = "frange";