V3.x中创建索引的方法推荐使用createIndex(key,options), ensureIndex()在V3.0.0中已被移除
官方文档:http://docs.mongoing.com/manual-zh/reference/method/db.collection.ensureIndex.html
官方文档:http://docs.mongoing.com/manual-zh/reference/method/db.collection.ensureIndex.html
2016-08-12
找不到numactl命令,老师说安装我们之前的配置重新启动mongodb,numactl --interleave=all bin/mongod -f conf/mongod.conf
2016-08-07
这里说的使用hint会出问题是因为hint强制使用指定的稀疏索引(此处指只在包含m的记录上创建索引)来查找,但是因为在没有包含m的记录中(此处即n:1的那条记录)没有创建m的索引,所以就根本查不出来。
2016-08-06