Open peterbourgon opened 10 years ago
Agreed. I think this is true for pagination in any database as long as the chosen cursor is well indexed. As an example, MySQL OFFSET, LIMIT
pagination needs to perform full table scans while BETWEEN
with PK as a cursor is very efficient.
I believe with some testing, the SelectRange mechanism can completely obviate SelectOffset.