hello *, what is the best way to create a requesthandler for distributed search with a default shards parameter but that can use different query parsers
thus far i have <requestHandler name="/ds" class="solr.SearchHandler"> <!-- default values for query parameters --> <lst name="defaults"> <str name="fl">*,score</str> <str name="wt">json</str> <str name="shards">host0:8080/solr/core0,host1:8080/solr/core1,host2:8080/solr/core2,localhost:8080/solr/core3</str> </lst> <arr name="components"> <str>query</str> <str>facet</str> <str>spellcheck</str> <str>debug</str> </arr> </requestHandler> which works as long as qt=standard, if i change it to dismax it doenst use the shards parameter anymore... thx much --joe