You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2011/07/28 21:35:49 UTC

[Solr Wiki] Update of "TermsComponent" by HossMan

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "TermsComponent" page has been changed by HossMan:
http://wiki.apache.org/solr/TermsComponent?action=diff&rev1=23&rev2=24

Comment:
1.5 is dead, long live 3.1

   * terms.mincount=<Integer> - Optional.  The minimum doc frequency to return in order to be included.  Results are '''inclusive''' of the mincount (i.e. >= mincount)
   * terms.maxcount=<Integer> - Optional.  The maximum doc frequency.  Default is -1 to have no upper bound.  Results are '''inclusive''' of the maxcount (i.e. <= maxcount)
   * terms.prefix={String} - Optional.  Restrict matches to terms that start with the prefix. 
-  * terms.regex={String} - Optional. Restrict matches to terms that match the regular expression. <!> [[Solr1.5]]
+  * terms.regex={String} - Optional. Restrict matches to terms that match the regular expression. <!> [[Solr3.1]]
-  * terms.regex.flag={case_insensitive|comments|multiline|literal|dotall|unicode_case|canon_eq|unix_lines} - Optional. Flags to be used when evaluating the regular expression defined in the "terms.regex" parameter (see http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html#compile%28java.lang.String,%20int%29 fore more details). This parameter can be defined multiple times (each time with different flag) <!> [[Solr1.5]]
+  * terms.regex.flag={case_insensitive|comments|multiline|literal|dotall|unicode_case|canon_eq|unix_lines} - Optional. Flags to be used when evaluating the regular expression defined in the "terms.regex" parameter (see http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html#compile%28java.lang.String,%20int%29 fore more details). This parameter can be defined multiple times (each time with different flag) <!> [[Solr3.1]]
   * terms.limit={integer} - The maximum number of terms to return. The default is 10.  If < 0, then include all terms.
   * terms.upper={The upper bound term} - The term to stop at.  Either upper or terms.limit must be set. 
   * terms.upper.incl={true|false} - Include the upper bound term in the result set.  Default is false.