0

I use solr and dismax reqest handler.

But when I use this handler, some queries as query by field haven't worked.

What's the problem ?

Thanks

bobosh
  • 425
  • 5
  • 21

1 Answers1

0

For ex, when using standard Lucene query parser, you use:

http://whatever:8280/solr/fr_00/select?q=cat:7030100&wt=json&indent=true

But when using dismax, you have to use something like:

http://whatever:8280/solr/fr_00/select?q=7030100&qf=cat&wt=json&indent=true&defType=dismax

this should also work

&fq=cat:(7030100)
Bob Yoplait
  • 2,421
  • 1
  • 23
  • 35