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
MongoDBmedium

Compound index order — what does the “prefix rule” mean?

Tags
#index#compound-index#performance
Back to categoryPractice quiz

Answer

For an index like `{a: 1, b: 1, c: 1}`, queries can efficiently use the leftmost prefix (a), (a,b), (a,b,c). If you skip `a`, the index is much less useful for that query.

db.users.createIndex({ orgId: 1, email: 1 })

// uses prefix (orgId, email)
db.users.find({ orgId: 1, email: "[email protected]" })

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
TTL index: what does it do and when would you use it?
#mongo#ttl#index
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