Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Nutch I'm using Solr as a search server.

I would like to perform something query like (hillary AND clinton) OR (barack AND obama) OR (..)

How to do it?

For me single OR query works, like india OR pakistan OR china query.AddNotRequiredTerm(term);

single AND query works india AND paksitan AND China query.AddRequiredTerm(term);

But the combination doesn't give appropriate result. Any help is highly appreciated.

Thanks in advance!!!

-Subas

share|improve this question
1  
Can you post an example SOLR url? I am not able to replicate this problem. My query works as expected: solr:8080/solr/select/?q=(john AND doe) OR (jane AND smith) OR (elizabeth AND lee) – Aaron D Aug 9 '10 at 19:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.