update : 2015.11.03
php.shukuma.com검색:
|
MongoCursor::tailable(PECL mongo >=0.9.4) MongoCursor::tailable — Sets whether this cursor will be left open after fetching the last results 설명Mongo has a feature known as tailable cursors which are similar to the Unix "tail -f" command. Tailable means cursor is not closed when the last data is retrieved. Rather, the cursor marks the final object's position. you can resume using the cursor later, from where it was located, if more data were received. Like any "latent cursor", the cursor may become invalid at some point -- for example if that final object it references were deleted. Thus, you should be prepared to requery if the cursor is MongoCursor::dead(). 인수
반환값Returns this cursor. 오류/예외Throws MongoCursorException if this cursor has started iterating. 예제Example #1 MongoCursor::tailable() example
<?php 참고MongoDB core docs on » tailable cursors.
|