|
MongoCursor::batchSize(PECL mongo >=1.0.11) MongoCursor::batchSize — Sets the number of results returned per result set ОписаниеThis cannot override MongoDB's limit on the amount of data it will return to the client (i.e., if you set batch size to 1,000,000,000, MongoDB will still only return 4-16MB of results). To ensure consistent behavior, the rules of batchSize and limit behavior a little complex but work "as expected". The rules are: hard limits override soft limits with preference given to MongoCursor::limit() over MongoCursor::batchSize(). After that, whichever is set and lower than the other will take precedence. Some examples:
<?php Список параметров
Возвращаемые значенияReturns this cursor. ОшибкиThrows MongoCursorException if this cursor has started iterating. This will change in 1.0.12, as this should be able to be called at any time. |
|