When I do a query on a single word my faceting
works well however when I search multiple word Solr treats each word as OR. For example linear algebra, returns linear and then algebra.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to change the default settings, you can change it in
schema.xml. Find the line that looks like this:and change the
ORtoAND.If you don’t want to change the global default or you don’t have access to it, you can use local params and prefix
{!q.op=AND}to the query you send across to Solr.