mongodb-index-creation
Installation
SKILL.md
MongoDB Index Creation & Types
Dramatically improve query performance with strategic indexing.
Quick Start
Create Indexes
// Single field index
await collection.createIndex({ email: 1 })
// Compound index (order matters!)
await collection.createIndex({ status: 1, createdAt: -1 })
// Unique index
await collection.createIndex({ email: 1 }, { unique: true })
// Sparse index (skip null values)
await collection.createIndex({ phone: 1 }, { sparse: true })