Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 MongoDB v3.0.3。运行 db.grades.explain().find() 时遇到问题 - 我不断收到消息“TypeError: db.grades.explain is not a function (shell):1”
但是,我可以使用 db.grades.find().explain() - 但是使用此方法返回的信息不如 collection.explain() 有用
原来,这是因为我使用的是 Robomongo(0.8.5 版),我只是假设你可以在 shell 中做的所有事情,你都可以在 Robomongo 中做,但显然不是。当我切换到使用命令行时, db.collection.explain() 工作得很好。