Grokking Modern Mobile System Design Interview
Vote

0% completed

Pagination

Pagination means loading a long list in smaller groups. Each group is called a page. A page can appear as part of one scrolling list. It does not have to be a separate screen.

For example, a post may have 1,000 comments. The app can load 20 comments first. When the user scrolls near the end, it can load the next 20.

This reduces the amount of data the app must download and display at once. The user can start reading without waiting for all 1,000 comments.

The main design question is: How does the app request the next group without repeating or missing comments?

.....

.....

.....

Like the course? Get enrolled and start learning!

Reading Progress

0%


Vote for new content