4
votes

I'm using the dismax handler to perform solr search over records (boosting some fields).

In my index, I have a RetailerId for each document, as well as other fields.

My query needs to search for documents that have this RetailerId as well as keywords:

http://localhost:8983/solr/select?qt=dismax&q=RetailerId:(27 OR 92) AND socks

What is the syntax for such a query? Thanks!

2

2 Answers

12
votes

Dismax does not support boolean operators. For a query like the one you described, you need to use the Standard Query Handler.

UPDATE

I have made a couple of tests and the fq parameter seems to work with dismax:
/select?qt=dismax&q=socks&fq=RetailerId:(27 OR 92)

0
votes

if you want to filter by facet, user eDismax (extended disMax) that way you can say for instance q= your query AND face_name:"facet value"