创建索引
$collection --> 表名 $field --> 字段名
$value --> 值
# 1是正排, -1 是倒排 db.$collection.createIndex({$field:1}); # 建立复合索引 db.$collection.createIndex({$field1:1, $field2:1});
查看索引
db.$collection.getIndexes();
删除索引
db.$collecion.dropIndex({$field:1});
# 删除全部索引
db.$collection.dropIndexes();
查看查询语句性能
db.$collecion.find({$field:$value}).explain(true)