[root@localhost mongodb_simple] ./bin/mongod -f conf/
为MongoDB启动时指定配置文件,出现错误:
-bash: ./bin/mongod:权限不够
怎么 解决?
为MongoDB启动时指定配置文件,出现错误:
-bash: ./bin/mongod:权限不够
怎么 解决?
2017-06-14
已采纳回答 / 小颜0
复合索引中字段的组合顺序很重要,这和数据库索引一样,索引的匹配仍然遵循“最左前缀”原则。如你给的例子,db.test.find({x:1,y:1});db.test.find({x:1});可以使用索引,但db.test.find({y:1});则不能使用索引
2017-06-05