Thursday, January 8, 2015

Indexes in MongoDB

Indexing all fields for textual search:
db.collection.ensureIndex(
                           { "$**": "text" },
                           { name: "TextIndex" }
                         )


Drop all indexes
db.collection.dropIndexes()