ParallelMultiSearcher.java In both search(Weight weight, Filter filter, int nDocs) and public TopFieldDocs search(Weight weight, Filter filter, int nDocs, Sort sort), there's a line:
>>> totalHits += msta[i].hits(); Would it be possible and useful to other developers if ParallelMultiSearcher (and I guess MultiSearcher) exposed the number of hits for each Searchable, in addition to having totalHits, the cumulative count? Thank you very much
