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 中查询运行时间的最佳方法(使用.explain()),但注意到millis同一查询的后续运行之间存在巨大差异。
.explain()
millis
在 MySQL 中,SQL_NO_CACHE会有所帮助。
为什么不采取相反的方法,将性能与缓存中的数据进行比较?这更能代表您将在生产中尝试做的事情。
为了“温暖你的数据”,你可以使用“touch”命令,它将数据和索引加载到内存中。
http://docs.mongodb.org/manual/reference/command/touch/