You just need to provide a second sort field along the lines of:
sort=score desc, author desc
François
On Jul 12, 2011, at 6:13 AM, Lox wrote:
> Hi,
>
> In the case where two or more documents are returned with the same score, is
> there a way to tell Solr to sort them alphabetically?
Am 12.07.2011 12:13, schrieb Lox:
> Hi,
>
> In the case where two or more documents are returned with the same score, is
> there a way to tell Solr to sort them alphabetically?
Yes, add the parameter
sort=score desc,your_field_that_shall_be_sorted_alphabetically asc
to your request.
Greetings,