首页 > 代码库 > mongodb(2) -索引创建
mongodb(2) -索引创建
在shell中查看集合中已经存在的索引,你可以运行:
db.things.getIndexes()
要查看数据库中所有的索引,可以运行:
db.system.indexes.find()
创建索引
db.things.ensureIndex({j:1});
建选项
ensureIndex函数的第二个参数是携带创建选项的文档/对象。这些选项有:
选项 | 值 | 默认值 |
background | true/false | false |
dropDups | true/false | false |
unique | true/false | false |
sparse | true/false | false |
v | 索引版本。0=早于v2.0版本,1=更小/更快(当前) | 1 in v2.0.除非特殊情境,默认使用1 |
http://blog.csdn.net/xinghebuluo/article/details/7221639
http://www.cnblogs.com/stephen-liu74/archive/2012/08/01/2561557.html
mongodb(2) -索引创建
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。