Software Engineering ยท APIs & Systems
Breaking a large result set into pages of a fixed size, so callers fetch one chunk at a time instead of the entire collection.
In practice: Cursor-based pagination (a pointer to a position in the dataset) is safer than offset-based (skip N rows) for large or frequently-changing datasets โ offset pagination can skip or duplicate rows when the underlying data changes between pages.