Oops, sorry for the confusion, I was thinking of ParallelReader, first available in Lucene-Java release 1.9:
<http://lucene.apache.org/java/docs/api/org/apache/lucene/index/ParallelReader.html> ----- An IndexReader which reads multiple, parallel indexes. Each index added must have the same number of documents, but typically each contains different fields. Each document contains the union of the fields of all documents with the same document number. When searching, matches for a query term are from the first index added that has the field. This is useful, e.g., with collections that have large fields which change rarely and small fields that change more frequently. The smaller fields may be re-indexed in a new index and both indexes may be searched together. Warning: It is up to you to make sure all indexes are created and modified the same way. For example, if you add documents to one index, you need to add the same documents in the same order to the other indexes. Failure to do so will result in undefined behavior. ----- Steve Steven Rowe wrote: > Hi Mohammad, > > Have you looked at MultiSearcher? > > <http://lucene.apache.org/java/docs/api/org/apache/lucene/search/MultiSearcher.html> > > Section 5.6 of Lucene in Action covers its use. > > Steve > > Mohammad Norouzi wrote: >> hi >> I have two separated index but there are some fields that are common >> between >> them. now I want to search from one index and then apply the result to the >> second one. what solution do you suggest? >> what happens on fields? I mean the first document has some fields that are >> not present in the second one so I need the final document has all the >> fields of both indexes. >> >> thanks > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]