Pagination of long lists often works with SQL queries like the following one with an offset O and a limit number N:
SELECT * FROM table ORDER BY something LIMIT O, N
THe WILL PAGINATE plugin for example produces queries like this. They can be awful slow if the offset O is very large. A [...]