Vaijanath N. Rao wrote:
Hi Solr-Users,
I am using DisMaxHandler in my application and I am facing one issue.
The DisMaxHandler works fine for general queries but returns no result
if I do fielded search.
For example
for query
a) q=xyz&qt=dismax returns me the required results
but if I do
b) q=field1:xyz+xyz&qt=dismax it returns me zero result.
Is there anyway I get results for the query type b but still use the
DisMaxHandler.
--Thanks and Regards
Vaijanath
DisMaxHandler does not allow the field syntax in queries. The valid
syntax is: '"', '-', and '+'
There is always the qf parameter though, or you could modify Dismax to
not escape ':'.
- Mark