- Reference >
- Database Commands >
- Query Plan Cache Commands >
- planCacheListPlans
planCacheListPlans¶
On this page
Definition¶
-
planCacheListPlans¶ Deprecated since version 4.2.
Note
MongoDB 4.2 adds a new aggregation pipeline stage
$planCacheStatsthat provides plan cache information for a collection.The
$planCacheStatsaggregation stage is preferred over the following methods and commands, which have been deprecated in 4.2:PlanCache.getPlansByQuery()method/planCacheListPlanscommand, andPlanCache.listQueryShapes()method/planCacheListQueryShapescommand.
Displays the cached query plans for the specified query shape.
To help identify slow queries with the same query shape, starting in MongoDB 4.2, each query shape is associated with a queryHash. The
queryHashis a hexadecimal string that represents a hash of the query shape and is dependent only on the query shape.Note
As with any hash function, two different query shapes may result in the same hash value. However, the occurrence of hash collisions between different query shapes is unlikely.
The query optimizer only caches the plans for those query shapes that can have more than one viable plan.
The
mongoshell provides the wrapperPlanCache.getPlansByQuery()for this command.The
planCacheListPlanscommand has the following syntax:The
planCacheListPlanscommand has the following field:Field Type Description querydocument The query predicate of the query shape. Only the structure of the predicate, including the field names, are significant to the shape; the values in the query predicate are insignificant. projectiondocument Optional. The projection associated with the query shape. sortdocument Optional. The sort associated with the query shape. To see the query shapes for which cached query plans exist, see List Query Shapes.
The
planCacheListPlansdatabase command returns the same output as thePlanCache.getPlansByQuery()method.
Required Access¶
On systems running with authorization, a user must have access that
includes the planCacheRead action.
Example¶
If a collection orders has the following query shape:
The following operation displays the query plan cached for the shape: