tags:

views:

70

answers:

1

Is it possible to compare data from multiple Lucene indexes? I would like to get documents that have the same value in similar fields (like first name, last name) across two indexes. Does Lucence support queries that can do this?

+1  A: 

Well, partly. You can build identical document schemas across indexes, and at least get the set of hits correctly. However, as the Lucene Similarity documentation shows, the idf (inverse document frequency) factor in the Lucene scoring depends both on the index size and the number of documents having the search term in the index. Both these factors are index-dependent. Therefore the same match from different indexes may get different scores depending on these factors.

Yuval F
That's right. But, I suspect, from the example given, the exact order may not be that important (since it is a match/no-match type of query.) So, ignoring IDF should be OK.
Shashikant Kore