planCacheClear

Definition

  • planCacheClear

New in version 2.6.

Removes cached query plans for a collection. Specify a queryshape to remove cached query plans for that shape. Omit the queryshape to clear all cached query plans.

The command has the following syntax:

  1. db.runCommand(
  2. {
  3. planCacheClear: <collection>,
  4. query: <query>,
  5. sort: <sort>,
  6. projection: <projection>
  7. }
  8. )

The planCacheClear command has the following field:

FieldTypeDescriptionquerydocumentOptional. The query predicate of the query shape. Only the structureof the predicate, including the field names, are significant to theshape; the values in the query predicate are insignificant.projectiondocumentOptional. The projection associated with the query shape.sortdocumentOptional. The sort associated with the query shape.

To see the query shapes for which cached query plans exist, seeList Query Shapes.

Required Access

On systems running with authorization, a user must have access thatincludes the planCacheWrite action.

Examples

Clear Cached Plans for a Query Shape

If a collection orders has the following query shape:

  1. {
  2. "query" : { "qty" : { "$gt" : 10 } },
  3. "sort" : { "ord_date" : 1 },
  4. "projection" : { },
  5. "queryHash" : "9AAD95BE" // Available starting in MongoDB 4.2
  6. }

The following operation clears the query plan cached for the shape:

  1. db.runCommand(
  2. {
  3. planCacheClear: "orders",
  4. query: { "qty" : { "$gt" : 10 } },
  5. sort: { "ord_date" : 1 }
  6. }
  7. )

Clear All Cached Plans for a Collection

The following example clears all the cached query plans for theorders collection:

  1. db.runCommand(
  2. {
  3. planCacheClear: "orders"
  4. }
  5. )

See also