Cursor-based querying with Rails
It’s a well known issue that LIMIT
+ OFFSET
pagination in any SQL server will lead to performance problems once the value of OFFSET
reaches a high enough value. This is because the database has to scan through the first [OFFSET
amount] of records that match the query before it can start returning an amount of records up to the LIMIT
.
This sort of addition of a LIMIT
+ OFFSET
to a slow query is commonly also used as a stop-gap for expensive queries. Perhaps before adding this, you have a query that’s building up a long list of transactions for another business to consume, and then one of your customers has a particularly impressive day and then your database has a particularly…