: to retrieve the documents pointed to by the doc ids that I can find in : responsebuilder.getResults().docList. This works well for retrieving fields : but not suprisingly, since I'm accessing the index directly, it : doesn't expose the scoring.
If you have a DocList where hasScores() returns true, then when you iterate over that DocList (using the DocIterator) the score() method will return the score for each doc. -Hoss