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 2010/10/26 01:34:40 UTC

[Solr Wiki] Update of "SolrQuerySyntax" by SasankMudunuri

Dear Wiki user,

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

The "SolrQuerySyntax" page has been changed by SasankMudunuri.
http://wiki.apache.org/solr/SolrQuerySyntax?action=diff&rev1=25&rev2=26

--------------------------------------------------

    * [[http://lucene.apache.org/solr/api/org/apache/solr/search/FunctionRangeQParserPlugin.html|frange]] - functions as range filters, also see this [[http://www.lucidimagination.com/blog/2009/07/06/ranges-over-functions-in-solr-14|intro blog]]
    * [[http://lucene.apache.org/solr/api/org/apache/solr/search/FieldQParserPlugin.html|field]] - simple field query
    * [[http://lucene.apache.org/solr/api/org/apache/solr/search/PrefixQParserPlugin.html|prefix]] - simple prefix query
-   * [[http://lucene.apache.org/solr/api/org/apache/solr/search/RawQParserPlugin.html|raw]] - raw term query, useful for debugging, or for avoiding query parser escaping madness when drilling into facets on text or string fields via fq parameters. Note: use "term" for this in Solr 4.0 or above.  Example: {{{ &fq={!raw f=field_name}crazy+\"field+value }}}
+   * [[http://lucene.apache.org/solr/api/org/apache/solr/search/RawQParserPlugin.html|raw]] - create a term query from the input value without any text analysis or transformation whatsoever. This is useful in debugging, or when raw terms are returned from the terms component (this is not the default). also useful for debugging, or for avoiding query parser escaping madness when drilling into facets on text or string fields via fq parameters. Note: use "term" for this in Solr 4.0 or above.  Example: {{{ &fq={!raw f=field_name}crazy+\"field+value }}}
    * <!> [[Solr4.0]] [[http://lucene.apache.org/solr/api/org/apache/solr/search/TermQParserPlugin.html|term]] - term query, useful for avoiding query parser escaping madness when drilling into facets via fq parameters.  Example: {{{ &fq={!term f=weight}1.5 }}}
    * [[http://lucene.apache.org/solr/api/org/apache/solr/search/NestedQParserPlugin.html|query]] - nested query parsing