You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by anuvenk <an...@hotmail.com> on 2008/01/05 21:53:30 UTC

How does solr rank multiple docs with same score

I noticed that the top 10 results for a particular search term had the same
score. In such cases how does solr determine which should get the first
place, second and so on?
-- 
View this message in context: http://www.nabble.com/How-does-solr-rank-multiple-docs-with-same-score-tp14638959p14638959.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: How does solr rank multiple docs with same score

Posted by Yonik Seeley <yo...@apache.org>.
On Jan 5, 2008 3:53 PM, anuvenk <an...@hotmail.com> wrote:
> I noticed that the top 10 results for a particular search term had the same
> score. In such cases how does solr determine which should get the first
> place, second and so on?

Ties are the same as in lucene... internal docid (equiv to the order
in which they were added to the index).

-Yonik