-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathPlanCache.clear.txt
54 lines (34 loc) · 1.22 KB
/
PlanCache.clear.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
=================
PlanCache.clear()
=================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. method:: PlanCache.clear()
Removes all cached query plans for a collection.
.. |dbcommand| replace:: :dbcommand:`planCacheClear` command
.. include:: /includes/fact-mongosh-shell-method-alt
The method is only available from the :method:`plan cache object
<db.collection.getPlanCache()>` of a specific collection; i.e.
.. code-block:: javascript
db.collection.getPlanCache().clear()
For example, to clear the cache for the ``orders`` collection:
.. code-block:: javascript
db.orders.getPlanCache().clear()
Compatibility
-------------
This method is available in deployments hosted in the following environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. include:: /includes/fact-environments-onprem-only.rst
Required Access
---------------
On systems running with :setting:`~security.authorization`, a user must have access that
includes the :authaction:`planCacheWrite` action.
.. seealso::
- :method:`db.collection.getPlanCache()`
- :method:`PlanCache.clearPlansByQuery()`