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 2006/09/07 23:18:27 UTC

[Solr Wiki] Update of "CoreQueryParameters" 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/CoreQueryParameters

The comment on the change is:
XML specific parms moved to XMLResponseFormat - wt added here.

------------------------------------------------------------------------------
- The following parameters are use by Solr regardless of which Query Hander is used to process the request...
+ The following query parameters are use by Solr for all requests...
  
  == qt ==
  
- The qt (query type) parameter is used by Solr to determine which Query Handler should be used to process the request.  Valid values are any of the names specified by `<requestHandler ... />` declarations in the `solrconfig.xml`
+ The qt (query type) parameter is used by Solr to determine which [http://incubator.apache.org/solr/docs/api/org/apache/solr/request/SolrRequestHandler.html Query Handler] should be used to process the request.  Valid values are any of the names specified by `<requestHandler ... />` declarations in the `solrconfig.xml`
  
  The default value is "standard".
  
- == version ==
+ == wt ==
  
- The version parameter determines the XML protocol used in the response.  Clients are strongly encouraged to ''always'' specify the protocol version, so as to ensure that the format of the response they receive does not change unexpectedly if/when the Solr server is upgraded.
+ The wt (writer type) parameter is used by Solr to determine which [http://incubator.apache.org/solr/docs/api/org/apache/solr/request/QueryResponseWriter.html Query Response Writer] should be used to process the request.  Valid values are any of the names specified by `< queryResponseWriter... />` declarations in the `solrconfig.xml`
  
- The default value is normally the latest supported, currently "2.1"
+ The default value is "standard".
  
- == stylesheet ==
- 
- The stylesheet parameter can be used to direct Solr to include a `<?xml-stylesheet type="text/xsl" href="..."?>` declaration in the XML response it returns.
- 
- The default behavior is not to return any stylesheet declaration at all.
- 
- == indent ==
- 
- If the indent parameter is used, and has a non-blank value, then Solr will make some attempts at indenting the XML response such that it will be easier to read by humans.
- 
- The default behavior is not to indent.
-