SolrQuerySyntax

Solr supports multiple query syntaxes through its query parser plugin framework. For documentation on the full list of available parser types, see the all subclasses of [WWW] QParserPlugin in the javadoc.

  1. Specifying a Query Parser
  2. Default QParserPlugin: LuceneQParserPlugin
    1. Differences From Lucene Query Parser
  3. NOTE: URL Escaping Special Characters

Specifying a Query Parser

Users can specify the type of a query in most places that accept a query string using LocalParams syntax. For example, the following query string specifies a lucene/solr query with a default operator of "AND" and a default field of "text": q={!lucene q.op=AND df=text}myfield:foo +bar -baz

In standard Solr search handlers, the default type of the main query only may be specified via the defType parameter. The default type of all other query parameters will remain "lucene".

q={!func}popularity is thus equivalent to defType=func&q=popularity in the standard Solr search handler.

Default QParserPlugin: LuceneQParserPlugin

The standard Solr Query Parser syntax is a superset of the [WWW] Lucene Query Parser syntax.

Differences From Lucene Query Parser

Differences in the Solr Query Parser include

Although not technically a Syntax difference, please note that if you use the Solr "[WWW] DateField" type, any queries on those fields (typically range queries) should use either the Complete ISO 8601 Date syntax that field supports, or the [WWW] DateMath Syntax to get relative dates. Examples:

NOTE: URL Escaping Special Characters

Please note that many characters in the Solr Query Syntax (most notable the plus sign: "+") are special characters in URLs, so when constructing request URLs manually, you must properly URL-Encode these characters.

                                     q=  +popularity:[10   TO   *]     +section:0
   http://localhost:8983/solr/select?q=%2Bpopularity:[10%20TO%20*]%20%2Bsection:0

last edited 2009-04-04 00:22:06 by HossMan