Concept Flow - Keyset pagination for performance
Client requests first page
Server returns first N items + last item's key
Client stores last item's key
Client requests next page with last key
Server returns next N items where key > last key
Repeat until no more items
End
The client requests pages using the last item's key from the previous page to fetch the next set efficiently.