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

How does a unique index work in MongoDB (and why do you need it)?

Tags
#unique-index#concurrency#mongodb
Back to categoryPractice quiz

Answer

A unique index enforces that no two documents can have the same value for the indexed key(s). Without it, application-level checks can race and create duplicates under concurrency.

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

Related questions

MongoDB
MongoDB transaction write conflicts: why do they happen and how should you handle them?
#mongo#transactions#concurrency
MongoDB
`$push` vs `$addToSet` — what’s the difference?
#mongodb#arrays#update
MongoDB
What does `upsert: true` mean in MongoDB updates?
#upsert#update#mongodb
MongoDB
In MongoDB updates, what does `$set` do?
#mongodb#update#set
MongoDB
MongoDB transactions — when are they useful and what’s the cost?
#transactions#mongodb#performance
MongoDB
What is an ObjectId in MongoDB?
#objectid#id#mongodb