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 2009/06/24 06:42:47 UTC

[Solr Wiki] Update of "SolrRequestHandler" by NoblePaul

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 NoblePaul:
http://wiki.apache.org/solr/SolrRequestHandler

The comment on the change is:
added links to javadocs

------------------------------------------------------------------------------
     1. look for a handler with a name matching the request (either the full path or the "qt")
     1. look for a handler configured with {{{default="true"}}}
     1. look for a handler configured with name="standard"
-    1. use an anonymous instance of StandardRequestHandler
+    1. use an anonymous instance of [http://lucene.apache.org/solr/api/org/apache/solr/handler/StandardRequestHandler.html StandardRequestHandler]
  
  
  Note! If your solrconfig.xml contains requestHandlers with the name= "/select", "/update", or "/admin" you will short circuit the standard request processing and use your own logic.  
@@ -51, +51 @@

  
  == Implementing a Request Handler ==
  
- The easiest way to implement SolrRequestHandler is to extend the RequestHandlerBase class.  Also see the list of Request Handlers below for examples.
+ The easiest way to implement SolrRequestHandler is to extend the [http://lucene.apache.org/solr/api/org/apache/solr/handler/RequestHandlerBase.html RequestHandlerBase] class.  Also see the list of Request Handlers below for examples.
  
  == List of Request Handlers Available ==