PHP » GoLang |
login |
register |
about
|
GoLang MongoCommandCursor::timeout
request it (350)
GoLang replacement for PHP's MongoCommandCursor::timeout
[edit | history]
PHP MongoCommandCursor::timeoutPHP original manual for MongoCommandCursor::timeout [ show | php.net ]MongoCommandCursor::timeout(PECL mongo >=1.6.0) MongoCommandCursor::timeout — Sets a client-side timeout for this command DescriptionA timeout can be set at any time and will affect subsequent data retrieval associated with this cursor, including fetching more results from the database. Parameters
Return ValuesThis cursor. Errors/ExceptionsCauses methods that fetch results to throw a MongoCursorTimeoutException if the data fetch takes longer than the specified number of milliseconds. ExamplesExample #1 MongoCommandCursor::timeout() example In the following example, the driver will wait for 60 seconds for the first response from the aggregate command. It will also wait for 60 seconds each time the server needs to be polled for more information.
<?php NotesWarning
This does not cause the MongoDB server to cancel long-running operations; it only instructs the driver to stop waiting for a response and throw a MongoCursorTimeoutException after a set time. If you need to specify a server-side timeout for a command, considering passing the maxTimeMS option to MongoCollection::aggregateCursor(). See Also
|
more
Recently updated
more
Most requested
more
Last requests
|