Pagination
Section titled “Pagination”Pagination divides a collection read into bounded pages instead of returning the entire matching set in one response.
A paging contract defines the maximum page size, ordering, and how the client requests the next page.
Offset and keyset pagination have different cost and consistency properties. Stable ordering is required so page boundaries remain meaningful.
Used in DKKB
Pagination and bounded collection readsReturn a collection in bounded pages with stable ordering, so a read cannot grow without limit as the data grows.
Related knowledge
Pagination and bounded collection readsReturn a collection in bounded pages with stable ordering, so a read cannot grow without limit as the data grows.