Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

searching in solr for specific values with dismax

Tags:

solr

lucene

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!

like image 527
jimi Avatar asked Dec 16 '22 20:12

jimi


1 Answers

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)

like image 117
Pascal Dimassimo Avatar answered Jan 11 '23 13:01

Pascal Dimassimo