Introduction
Scan pagination helps you get all items from a big table in small parts. This avoids slow or heavy requests.
When you want to read all data but the table is too large to get at once.
When you want to show data page by page in an app or website.
When you want to avoid timeouts or limits on reading data.
When you want to process data in chunks to save memory.
When you want to control how much data you read each time.