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 QParserPlugin in the javadoc.
Contents
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 Lucene Query Parser syntax.
Differences From Lucene Query Parser
Differences in the Solr Query Parser include
Range queries [a TO z], prefix queries a*, and wildcard queries a*b are constant-scoring (all matching documents get an equal score). The scoring factors tf, idf, index boost, and coord are not used. There is no limitation on the number of terms that match (as there was in past versions of Lucene).
Lucene 2.1 has also switched to use ConstantScoreRangeQuery for its range queries.
A * may be used for either or both endpoints to specify an open-ended range query.
field:[* TO 100] finds all field values less than or equal to 100
field:[100 TO *] finds all field values greater than or equal to 100
field:[* TO *] matches all documents with the field
- Pure negative queries (all clauses prohibited) are allowed.
-inStock:false finds all field values where inStock is not false
-field:[* TO *] finds all documents without a value for field
A hook into FunctionQuery syntax. Quotes will be necessary to encapsulate the function when it includes parentheses.
Example: _val_:myfield
Example: _val_:"recip(rord(myfield),1,2,3)"
- Nested query support for any type of query parser (via QParserPlugin). Quotes will often be necessary to encapsulate the nested query if it contains reserved characters.
Example: _query_:"{!dismax qf=myfield}how now brown cow"
Although not technically a Syntax difference, please note that if you use the Solr "DateField" type, any queries on those fields (typically range queries) should use either the Complete ISO 8601 Date syntax that field supports, or the DateMath Syntax to get relative dates. Examples:
timestamp:[* TO NOW]
createdate:[1976-03-06T23:59:59.999Z TO *]
createdate:[1995-12-31T23:59:59.999Z TO 2007-03-06T00:00:00Z]
pubdate:[NOW-1YEAR/DAY TO NOW/DAY+1DAY]
createdate:[1976-03-06T23:59:59.999Z TO 1976-03-06T23:59:59.999Z+1YEAR]
createdate:[1976-03-06T23:59:59.999Z/YEAR TO 1976-03-06T23:59:59.999Z]
Dismax Query Parser
The dismax query parser provides query time field level boosting granularity, with less special syntax. Dismax generally makes the best first choice query parser for user facing Solr applications. The dismax handler parameters are described in detail here: DisMaxRequestHandler.
Other built-in useful query parsers
func - create a function query
boost - boost a query by a function query
frange - functions as range filters, also see this intro blog
field - simple field query
prefix - simple prefix query
raw - raw term query, useful for avoiding query parser escaping madness when drilling into facets via fq parameters. &fq={!raw f=field_name}crazy+\"field+value
query - nested query parsing
See also SolrPlugins for information on writing your own query parser.
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
For more information
See Yonik Seely's blog on Nested Queries in Solr