Blog

Your dream job? Lets Git IT.
Interactive technical interview preparation platform designed for modern developers.

XGitHub

Platform

  • Categories

Resources

  • Blog
  • About the app
  • FAQ
  • Feedback

Legal

  • Privacy Policy
  • Terms of Service

© 2025 LetsGit.IT. All rights reserved.

LetsGit.IT/Categories/MongoDB
MongoDBhard

Pagination at scale — why can `skip/limit` become slow and what’s a better pattern?

Tags
#pagination#skip-limit#performance
Back to categoryPractice quiz

Answer

`skip` must walk past many documents, so deep pages get slower. A better pattern is range/seek pagination (e.g., by `_id` or a createdAt index) using “greater than last seen” with sorting.

db.posts.find({ _id: { $gt: lastId } })
  .sort({ _id: 1 })
  .limit(20)

Related questions

MongoDB
Text indexes: when would you use them and what’s a limitation?
#mongo#text-index#search
MongoDB
`$lookup`: what does it do and what is a common pitfall?
#mongo#lookup#aggregation
MongoDB
Sharded MongoDB balancing (chunk migrations): what can go wrong and how do you reduce impact?
#mongo#sharding#balancer
MongoDB
Aggregation pipeline performance: why put `$match` (and `$project`) early?
#mongo#aggregation#pipeline
MongoDB
What is a covered query in MongoDB and why can it be faster?
#mongo#indexes#covered-query
MongoDB
Sharded MongoDB: why are “scatter-gather” queries bad and how do you avoid them?
#mongo#sharding#shard-key