Hi,
I'm trying to read document score of lucene search results.
I get a set of document scores through the hits object when I use the following method : Hits hits = IndexSearcher.search(myQuery);
However,if i use the method: searcher.search(myQuery, hitsCollector);
I get a totally different set of document scores through the hitCollector.hits object
Am I missing something here?
Thanks!