Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16116 программистов и 1772 робота. Сейчас ищут 1827 программистов ...
MongoCursorInterface::timeout - Sets a client-side timeout for this query
Вернуться к: MongoCursorInterface
MongoCursorInterface::timeout
(PECL mongo >=1.5.0)
MongoCursorInterface::timeout — Sets a client-side timeout for this query
Описание
A timeout can be set at any time and will affect subsequent data retrieval associated with this cursor, including fetching more results from the database.
Список параметров
-
ms
-
The number of milliseconds for the cursor to wait for a response. Use -1 to wait forever. By default, the cursor will wait 30000 milliseconds (30 seconds).
Возвращаемые значения
Returns this cursor.
Ошибки
Causes methods that fetch results to throw a MongoCursorTimeoutException if the data fetch takes longer than the specified number of milliseconds.
Смотрите также
- The socketTimeoutMS option for MongoClient::__construct()
Вернуться к: MongoCursorInterface