Skip to content
nyeholt edited this page Oct 1, 2010 · 2 revisions

Please see http://lucene.apache.org/solr/ for details on query structures - specifically, http://wiki.apache.org/solr/SolrQuerySyntax explains several different bits of functionality available, while http://lucene.apache.org/java/2_9_1/queryparsersyntax.html is the base reference for query syntax, though the module might not currently support all functionality until a later version of Solr.

Queries for SolrSearchPage

Queries are passed 'almost' raw through to the Solr query engine. When executed, the query is modified to limit results to subclasses of, at the very least, Page.

Capabilities include

  • "Must include" and "Must not include". Adding + in front of a term indicates the result MUST include the given term. A - in front of a term means that results must NOT contain that term.
  • Range querying
  • Specific field querying
  • TODO