For performance reasons, for huge datasets, it could be really good to have a solution to paginate using cursor strategy instead of LIMIT/OFFSET.
Cursor based pagination is more scalable compared to offset based pagination. As the dataset grows, the cursor based pagination method can continue to retrieve data efficiently, while offset based pagination becomes less efficient as the dataset grows larger.
Of course, it has some some disadvantages, such as not being able to choose a specific page.
If I understand, the cursor pagination doesn't include a page.
It seems this could hardly fit our current implementation, but let me know if you think it could be feasible anyway.
Feature Request
Summary
For performance reasons, for huge datasets, it could be really good to have a solution to paginate using cursor strategy instead of LIMIT/OFFSET.
Of course, it has some some disadvantages, such as not being able to choose a specific page.
Some resources:
Maybe it could be added as a new option?