3.1 创建索引
索引的创建方法
语法格式:
db.**collection.** createIndex(keys, options)- Key值为你要创建的索引字段,1为按升序创建索引,如果你想按降序来创建索引指定为-1即可
3.0.0版本前创建索引方法为 db.collection.ensureIndex(),之后的版本使用了 db.collection.createIndex() 方法,ensureIndex() 还能用,但只是 createIndex() 的别名。
- 例如:db.col.createIndex({“title”:1})
查询创建的索引:
db.customers.getIndexes()