- Reference >
- Database Commands >
- Query Plan Cache Commands >
- planCacheListQueryShapes
planCacheListQueryShapes¶
On this page
Definition¶
-
planCacheListQueryShapes¶ New in version 2.6.
Displays the query shapes for which cached query plans exist for a collection.
The query optimizer only caches the plans for those query shapes that can have more than one viable plan.
The
mongoshell provides the wrapperPlanCache.listQueryShapes()for this command.The command has the following syntax:
The
planCacheListQueryShapescommand has the following field:Field Type Description planCacheListQueryShapesstring The name of the collection. Returns: A document that contains an array of query shapes for which cached query plans exist.
Required Access¶
On systems running with authorization, a user must have access that
includes the planCacheRead action.
Example¶
The following returns the query shapes that have
cached plans for the orders collection:
The command returns a document that contains the field shapes that
contains an array of the query shapes currently
in the cache. In the example, the orders collection had cached
query plans associated with the following shapes:
See also