Hi everyone,
I am using muitisearcher on multiple indexes, this will returns all the hits
on specific search query. but I wants to know how many hits by which index
folder.
i.e. I have created multiple Indexes i.e. Index1, Index2 and index3. and
Now open multisearcher on that.
.
.
objIndexSearcher(0) = New Lucene.Net.Search.IndexSearcher("c:\Index1")
objIndexSearcher(1) = New Lucene.Net.Search.IndexSearcher("c:\Index2")
objIndexSearcher(2) = New Lucene.Net.Search.IndexSearcher("c:\Index3")
.
.
objMultiSearcher = New Lucene.Net.Search.MultiSearcher(objIndexSearcher)
.
.
hits = objMultiSearcher.Search(lucQuery)
this will return all the hits which matches the query. But I wants to show
how many hits come by Index1, how many hits come by Index2...so how it is
possible ? please suggest me.
Thanks in advance,
-Laxmilal Menaria