When you specify sort order, Solr makes no assumptions at all. So
sort = asc would sort _only_ by key. Imagine how
puzzled people would be if they specify sort= asc and... the result
was really ordered by score. Yuck.
So yes, you must specify both.
Best,
Erick
On Tue, Jul 24, 2018 at 11:37 PM,
: For deep pagination, it is recommended that we use cursorMark and
: provide a sort order for as a tiebreaker.
:
: I want my results in relevancy order and so have no sort specified on my
query by default.
:
: Do I need to explicitly set :
:
: sort : score desc, asc
Yes.
: Or can