I don't think so, you could combine the queries. You are first searching Index A and the results are given as input to Index B. You cannot combine the queries and you cannot use multi searcher or parallel multi searcher. You need to search two indexes independently and sequentially.
Regards Aditya www.findbestopensource.com On Mon, Feb 14, 2011 at 11:46 PM, <[email protected]> wrote: > Hi, > > I have two index files. I am searching id1 from Index A and id2 from Index > B. > By using id1 (Index A) results , I am searching id2 from Index B. I stored > these two index files in local file system. > I am using filter as a result of Index A. > IndexSearcher.search(Query,filter,10000); > > I am running queries individually. Is there any possibility that I can > combine these two queries into single query. Can I use Multi index search in > this case ? > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
