jtibshirani commented on issue #715: LUCENE-7714 Add a range query that takes advantage of index sorting. URL: https://github.com/apache/lucene-solr/pull/715#issuecomment-501898393 @jimczi I tried moving the optimization into `SortedNumericDocValuesRangeQuery`. I had a couple questions: - It is now possible that `match` and `explain` will be slower for `SortedNumericDocValuesRangeQuery`, since we may perform a binary search instead of just checking a single document value. Perhaps I should override these methods and ensure we always use the old approach? - I don't see a good way to integrate the optimization into `IndexOrDocValuesQuery`, any guidance would be very welcome.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
