Re: Search in multiple indexes which have differnt field name

2011-02-14 Thread liat oren
Ok, thanks a lot ! I will try that On 14 February 2011 13:25, Anshum wrote: > Hi Liat, > You could use open a multi/parallelmultisearcher on the indexes that you > have and then construct an OR query e.g. (contents:A OR text:A) > I am assuming that the field names do not overlap. If that is not

Re: Search in multiple indexes which have differnt field name

2011-02-14 Thread Anshum
Hi Liat, You could use open a multi/parallelmultisearcher on the indexes that you have and then construct an OR query e.g. (contents:A OR text:A) I am assuming that the field names do not overlap. If that is not the case then you'd need another solution. -- Anshum Gupta http://ai-cafe.blogspot.com

Search in multiple indexes which have differnt field name

2011-02-14 Thread liat oren
Hey All, I try to construct a boolean query that has to run on 3 different set of indexes: in two of them, it should query a field name "contents" and in one of them, it should query a field named "text". How can I use MultiSearcher to support this structure? Thanks a lot, Liat