magibney opened a new pull request #588: URL: https://github.com/apache/solr/pull/588
See: [SOLR-14764](https://issues.apache.org/jira/browse/SOLR-14764) Particularly for high-recall, high-cardinality cases, `sort:"index desc"` currently performs far less well than `sort:"index asc"` (passing every term through a priority queue as if it were a FIFO queue, but with lots of unnecessary comparisons). This PR addresses that issue. Essentially: we can't really afford to ignore/abstract the fact that there is a direct connection between native ord sort order and order of iteration in building the priority queue for the `sort:"index [asc|desc]"` case. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org