Specifies a cumulative time limit in milliseconds to be allowed by the server for processing operations on the cursor.
Specifies a cumulative time limit in milliseconds to be allowed by the server for processing operations on the cursor.
This cursor.
Throws MongoCursorException if this cursor has started iterating.
Causes methods that fetch results to throw a MongoExecutionTimeoutException if the query takes longer than the specified number of milliseconds in processing time.
In the following example, the server will abort the query if the cursor requires more than two seconds in processing time to return its results.
<?php $cursor = $collection->find(); $cursor->maxTimeMS(2000); try { $results = iterator_to_array($cursor); } catch (MongoExecutionTimeoutException $e) { echo "query took too long!"; } ?>
Please login to continue.