1、启用索引
下面的命令对id字段建索引,1表示是升序。如果-1是降序。
db.collection.ensureIndex({id:1}, {unique:true, dropDups:true, background:true});
2、删除索引
删除id的索引
db.collection.dropIndex({id:1})
删除全部索引
db.collection.dropIndexes();
3、重建索引
db.collection.reIndex()
4、显示当前collection上的索引
db.collection.getIndexes()
5、查看当前正在运行的任务
db.currentOp()