I am trying to use the edismax defType and am running into the following error.
HTTP ERROR : 400 Unknown query type 'edismax'
The request handler in the solrconfig.xml file looks as follows
<requestHandler name="foobar" class="solr.SearchHandler">
<lst name="defaults">
<str name="defType">edismax</str>
<str name="qf">block</str>
<str name="q.alt">*:*</str>
</lst>
</requestHandler>
My goal is to do wildcard searches with this search handler.
We recently upgraded to use Solr 3.2 from 1.4. Is there a setting or a config that has to be change to allow edismax?
Thanks!