Re: A question about solr score

2007-10-26 Thread Chris Hostetter
: It's trivial for the client to normalize if desired - take the top scoring : document, if it's greater than 1.0 then scale all scores based on that. this is why doclists include the "maxScore" in their output as well, to make it easy to normalize scores even if you are using pagination (or so

Re: A question about solr score

2007-10-26 Thread Erik Hatcher
Solr returns the raw score, not the Lucene Hits normalized one. It's trivial for the client to normalize if desired - take the top scoring document, if it's greater than 1.0 then scale all scores based on that. Erik On Oct 26, 2007, at 2:53 AM, zx zhang wrote: Hi, everyone! As w