ExplainVerbosity Enumeration |
The verbosity of an explanation.
Namespace:
MongoDB.Driver.Core.Operations
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public enum ExplainVerbosity
Public Enumeration ExplainVerbosity
Members
| Member name | Value | Description |
---|
| QueryPlanner | 0 |
Runs the query planner and chooses the winning plan, but does not actually execute it.
|
| ExecutionStats | 1 |
Runs the query optimizer, and then runs the winning plan to completion. In addition to the
planner information, this makes execution stats available.
|
| AllPlansExecution | 2 |
Runs the query optimizer and chooses the winning plan, but then runs all generated plans
to completion. This makes execution stats available for all of the query plans.
|
See Also