MongoDB创建索引

Posted 王志良

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB创建索引相关的知识,希望对你有一定的参考价值。

创建索引:

db.集合.ensureIndex({属性:1}) #1表示升序,-1表示降序

具体操作:

  db.test.ensureIndex({name:1})

MongoDB在默认情况下索引字段的值可以相同

创建唯一索引(索引的值是唯一的)

db.test.ensureIndex({name:1},{"unique":true})

创建联合索引:

db.test.ensureIndex({name:1,age:1})

查看当前集合的所有索引:

db.test.getindexes()

删除索引:

db.test.dropIndex({"索引名称":1})

 

以上是关于MongoDB创建索引的主要内容,如果未能解决你的问题,请参考以下文章

mongodb 每次都要创建索引吗

MongoDB创建索引

Ruby操作MongoDB(进阶六)-索引Indexing

MongoDB——索引操作

MongoDB——索引操作

MongoDB 创建基础索引组合索引唯一索引以及优化