- Reference >
mongoShell Methods >- Query Plan Cache Methods >
- PlanCache.getPlansByQuery()
PlanCache.getPlansByQuery()¶
On this page
Definition¶
-
PlanCache.getPlansByQuery(<query>, <projection>, <sort>)¶ Displays the cached query plans for the specified query shape.
The query optimizer only caches the plans for those query shapes that can have more than one viable plan.
The method is only available from the
plan cache objectof a specific collection; i.e.The
PlanCache.getPlansByQuery()method accepts the following parameters:Parameter 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. Required if specifying the sortparameter.sortdocument Optional. The sort associated with the query shape. Returns: Array of cached query plans for a query shape. To see the query shapes for which cached query plans exist, use the
PlanCache.listQueryShapes()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: