Dear Wiki user,

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

The following page has been changed by HossMan:
http://wiki.apache.org/solr/StandardRequestHandler

------------------------------------------------------------------------------
  ||`name:solr`||search for "solr" in the "name" field||
  ||`name:solr; price desc`||same as above, but in descending order of the 
"price" field||
  ||`name:solr; inStock desc, price asc`||same as above, but sorted by 
"inStock" descending, then "price" ascending||
+ 
+ Sorting can be done on any field which is indexed and non-tokenized, or on 
the "score" of the document.
  
  Other then the optional sort specification the only difference between how 
this query string is parsed, and how the Lucene !QueryParser works, is that by 
default, the Solr !QueryParser uses constant score variations of Range and 
Prefix queries by default, so you don't need to worry about the dreaded "Too 
Many Clauses" exception.  Open-ended range queries are also supported by using 
"*" as an end-point.
  

Reply via email to