- Reference >
- Database Commands >
- Administration Commands >
- killCursors
killCursors¶
On this page
New in version 3.2.
Definition¶
-
killCursors¶ Kills the specified cursor or cursors for a collection. MongoDB drivers use the
killCursorscommand as part of the client-side cursor implementation.Note
In general, applications should not use the
killCursorscommand directly.The
killCursorscommand must be run against the database of the collection whose cursors you wish to kill.To run killCursors, use the
db.runCommand( { <command> } )method.The command has the following form:
Field Type Description killCursorsstring The name of the collection. cursorsarray The ids of the cursors to kill.
Example¶
Consider the following find operation on the
test.restaurants collection:
which returns the following:
To kill this cursor, use the killCursors command.
killCursors returns the following operation details: