Working with MongoDB Indexes
Indexes are the single biggest tunable performance factor in MongoDB Absent or suboptimal indexes are the most common avoidable MongoDB performance problem. // Create an index if one does not exist db.recipes.ensureIndex ( { main_ingredient : 1 } ) //…