views:

54

answers:

1

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

A: 

Thanks for the response.

We are using the distributed index implementation and are able to get the similar syntax, via the use of solrquery, working, now.

Ashok Raman