keyset-pagination Questions
4
Solved
I want to apply pagination on a table with huge data. All I want to know a better option than using OFFSET in SQL Server.
Here is my simple query:
SELECT *
FROM TableName
ORDER BY Id DESC
OFFSET 3...
Knisley asked 29/12, 2021 at 12:37
1
I'm trying to move away from OFFSET/FETCH pagination to Keyset Pagination (also known as Seek Method). Since I'm just started, there are many questions I have in my mind but this is one of many whe...
Amok asked 8/8, 2020 at 14:2
2
Solved
A common solution to high performance pagination is to use an indexed field, starting each new "page" from the last value of the prior page. For example, with a dataset like this (assuming Category...
Gourde asked 22/6, 2019 at 22:25
1
© 2022 - 2024 — McMap. All rights reserved.