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 2007/09/18 02:19:30 UTC

[Solr Wiki] Update of "StandardRequestHandler" by HossMan

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

------------------------------------------------------------------------------
  The Standard Request Handler is the default Query handler included in the standard Solr distribution.  It is usually registered in the solrconfig.xml with the query type "standard", and while it's certainly possible to reconfigure Solr so that a different handler is registered with that query type -- it is discouraged.  (Doing so would confuse a great many people)
+ 
+ [[TableOfContents(2)]]
  
  = Query Params =
  
@@ -48, +50 @@

  
  `http://yourhost.tld:9999/solr/select?q=id:SP2514N&version=2.1&indent=1`
  
-    {{{
+ {{{
  <?xml version="1.0" encoding="UTF-8"?>
  <response>
  <responseHeader><status>0</status><QTime>1</QTime></responseHeader>
@@ -74, +76 @@

  === A simple query for one document, with a limited field list ===
  
  `http://yourhost.tld:9999/solr/select?q=id:SP2514N&version=2.1&indent=1&fl=id+name`
-    {{{
+ {{{
  <?xml version="1.0" encoding="UTF-8"?>
  <response>
  <responseHeader><status>0</status><QTime>2</QTime></responseHeader>
@@ -92, +94 @@

  === A limited number of fields, plus the scores of the first 2 documents in the result set ===
  
  `http://yourhost.tld:9999/solr/select?q=cat:electronics+Belkin&version=2.1&start=0&rows=2&indent=on&fl=id+name+score`
-    {{{
+ {{{
  <?xml version="1.0" encoding="UTF-8"?>
  <response>
  <responseHeader><status>0</status><QTime>6</QTime></responseHeader>
@@ -117, +119 @@

  === The third and Fourth documents in the result set ===
  
  `http://yourhost.tld:9999/solr/select?q=cat:electronics+Belkin&version=2.1&start=2&rows=2&indent=on&fl=id+name+score`
-    {{{
+ {{{
  <?xml version="1.0" encoding="UTF-8"?>
  <response>
  <responseHeader><status>0</status><QTime>2</QTime></responseHeader>
@@ -141, +143 @@

  === The second document in the result set with and debuging info (including it's score explanation) ===
  
  `http://yourhost.tld:9999/solr/select?q=cat:electronics+Belkin&version=2.1&start=1&rows=1&indent=on&fl=id+name+score&debugQuery=on`
-    {{{
+ {{{
  <?xml version="1.0" encoding="UTF-8"?>
  <response>
  <responseHeader><status>0</status><QTime>13</QTime></responseHeader>
@@ -186, +188 @@

  === One document in a result set, and the explain info for another document ===
  
  `http://localhost:8983/solr/select?q=cat:electronics+Belkin&version=2.1&start=1&rows=1&indent=on&fl=id+name+score&explainOther=id%3A6H500F0&debugQuery=on`
-    {{{
+ {{{
  <?xml version="1.0" encoding="UTF-8"?>
  <response>
  <responseHeader><status>0</status><QTime>7</QTime></responseHeader>
@@ -282, +284 @@

  </lst>
  </response>
  }}}
+ ----
+ CategorySolrRequestHandler