: > - Factored out response field setting from StandardRequestHandler (note, this is a slight semantic change, as previously : > the score was only included if "score" was sent in the field list. : : This was done because there is an optimization that can use a filter : (the set of all documents matching a query) to satisfy a sorted query if : scores aren't needed. This bypasses re-executing the query.
yeah .. i'd forgotten about that ... off the cuff we can probably deal with this by using the utility method to set field list on the response, and then before executing the search, check if "score" is in SolrQueryResponse.getReturnFields() and if it is set the flag -Hoss