mongodb explain

MongoDB runs the query optimizer to choose the winning plan for the operation under evaluation. cursor.explain() returns...

mongodb explain

MongoDB runs the query optimizer to choose the winning plan for the operation under evaluation. cursor.explain() returns the queryPlanner information for the ... ,5 天前 - db.collection.explain(): The db.collection.explain() method is used to returns information on the query execution of various methods. See also ...

相關軟體 MongoDB 資訊

MongoDB
MongoDB 是一個免費且開放源碼的跨平檯面向文檔的數據庫程序。分類為 NoSQL 數據庫程序,MongoDB 使用類似 JSON 的文檔與模式。它為使用 MongoDB 包括數據庫開發人員和 DBA 的任何人提供了豐富的 GUI 工具。主要功能包括:全功能嵌入 MongoDB Shell,用戶友好的 Map-Reduce 操作編輯器,創建 / 刪除數據庫,管理集合及其索引的能力,用戶友好的 G... MongoDB 軟體介紹

mongodb explain 相關參考資料
$explain — MongoDB Manual

_addSpecial( "$explain", 1 ) db.collection.find( $query: }, $explain: 1 } ). In the mongo shell, you also can retrieve query plan information through the explain() ...

https://docs.mongodb.com

cursor.explain() — MongoDB Manual

MongoDB runs the query optimizer to choose the winning plan for the operation under evaluation. cursor.explain() returns the queryPlanner information for the ...

https://docs.mongodb.com

db.collection.explain() - MongoDB shell method - w3resource

5 天前 - db.collection.explain(): The db.collection.explain() method is used to returns information on the query execution of various methods. See also ...

https://www.w3resource.com

db.collection.explain() — MongoDB Manual

Parameter, Type, Description. verbosity, string. Optional. Specifies the verbosity mode for the explain output. The mode affects the behavior of explain() and ...

https://docs.mongodb.com

Explain Results — MongoDB Manual

Each stage passes its results (i.e. documents or index keys) to the parent node. The leaf nodes access the collection or the indices. The internal nodes ...

https://docs.mongodb.com

explain — MongoDB Manual

Although MongoDB provides the explain command, the preferred method for running explain is to use the db.collection.explain() and cursor.explain() helpers.

https://docs.mongodb.com

MongoDB 查询分析| 菜鸟教程

MongoDB 查询分析常用函数有:explain() 和hint()。 使用explain() explain 操作提供了查询信息,使用索引及查询统计等。有利于我们对索引的优化。 接下来我们 ...

http://www.runoob.com

MongoDB 索引和explain使用- 简书

mongodb 索引使用作用索引通常能够极大的提高查询。 索引是一种数据结构,他搜集一个集合中文档特定字段的值。 B-Tree索引来实现。

https://www.jianshu.com

MongoDB查询过程查看-执行计划函数explain - IT笔录

explain() 是MongoDB的一个重要的查询论断工具,这个函数能够提供大量的与查询相关的信息,该函数会返回查询计划、执行状态、服务器信息, ...

https://itbilu.com

如何通过MongoDB自带的Explain功能提高检索性能? - InfoQ

本文作者最近分析了一些MongoDB 的性能问题,发现MongoDB 自带的Explain 有很强大的分析功能。根据Explain 的运行结果可以得到find 语句 ...

https://www.infoq.cn