update : 2015.11.03
php.shukuma.com검색:
|
MongoCursor::timeout(PECL mongo >=1.0.3) MongoCursor::timeout — Sets a client-side timeout for this query 설명A timeout can be set at any time and will affect subsequent queries on the cursor, including fetching more results from the database. 인수
반환값This cursor. 오류/예외Causes methods that fetch results to throw a MongoCursorTimeoutException if the query takes longer than the specified number of milliseconds. 예제Example #1 MongoCursor::timeout() example In the following example, the driver will wait forever for the initial database response, and then wait 100ms for subsequent responses.
<?php 주의Warning
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 query, consider using MongoCursor::maxTimeMS(). 참고
|