You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2019/12/10 04:29:45 UTC

[lucene-solr] branch branch_8x updated: SOLR-14029: Solr Ref Guide: clarify requestDispatcher handleSelect=true

This is an automated email from the ASF dual-hosted git repository.

dsmiley pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 662c455  SOLR-14029: Solr Ref Guide: clarify requestDispatcher handleSelect=true
662c455 is described below

commit 662c455ab0633219482c56679faf87073bdb3ed7
Author: Alessandro Benedetti <a....@sease.io>
AuthorDate: Mon Dec 9 23:28:45 2019 -0500

    SOLR-14029: Solr Ref Guide: clarify requestDispatcher handleSelect=true
    
    (cherry picked from commit e84a23529e3d995803cce3f068172a718e94e24f)
---
 solr/solr-ref-guide/src/requestdispatcher-in-solrconfig.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/src/requestdispatcher-in-solrconfig.adoc b/solr/solr-ref-guide/src/requestdispatcher-in-solrconfig.adoc
index c2008fa..362e6dc 100644
--- a/solr/solr-ref-guide/src/requestdispatcher-in-solrconfig.adoc
+++ b/solr/solr-ref-guide/src/requestdispatcher-in-solrconfig.adoc
@@ -27,7 +27,7 @@ Included are parameters for defining if it should handle `/select` urls (for Sol
 `handleSelect` is for legacy back-compatibility; those new to Solr do not need to change anything about the way this is configured by default.
 ====
 
-The first configurable item is the `handleSelect` attribute on the `<requestDispatcher>` element itself. This attribute can be set to one of two values, either "true" or "false". It governs how Solr responds to requests such as `/select?qt=XXX`. The default value "false" will ignore requests to `/select` if a requestHandler is not explicitly registered with the name `/select`. A value of "true" will route query requests to the parser defined with the `qt` value.
+The first configurable item is the `handleSelect` attribute on the `<requestDispatcher>` element itself. This attribute can be set to one of two values, either "true" or "false". It governs how Solr responds to requests such as `/select?qt=XXX`. The default value "false" will ignore requests to `/select` if a requestHandler is not explicitly registered with the name `/select`. A value of "true" will route query requests to the parser defined with the `qt` value if a requestHandler is not [...]
 
 In recent versions of Solr, a `/select` requestHandler is defined by default, so a value of "false" will work fine. See the section <<requesthandlers-and-searchcomponents-in-solrconfig.adoc#requesthandlers-and-searchcomponents-in-solrconfig,RequestHandlers and SearchComponents in SolrConfig>> for more information.