: The scores list in DocIterator is null after a successful query. There's a
: flag in SolrIndexSearcher, GET_SCORES, that looks like it should trigger
: setting the scores array for the resulting DocList, but I can't figure out how
: to set it. Any suggestions? I'm using the svn trunk code.
Can you elaborate (ie: paste some code examples) on how you are aquiring
your DocList ... what method are you calling on SolrIndexSearcher? what
arguments are you passing it?
NOTE: the SolrIndexSearcher.getDocList* methods may choose to build
the DocList from a DocSet unless:
a) you use a sort that inlcudes score
or b) you use a method sig that takes a flags arg and explicitly set
the GET_SCORES mask on your flags arg.
-Hoss