Re: cursorMark and sort order

2018-07-25 Thread Erick Erickson
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,

Re: cursorMark and sort order

2018-07-25 Thread Chris Hostetter
: 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

cursorMark and sort order

2018-07-24 Thread Dave Durbin
Hi, 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 Or can I get away with jus