MongoCursor
在线手册:中文 英文
PHP手册

MongoCursor::snapshot

(PECL mongo >=0.9.4)

MongoCursor::snapshotUse snapshot mode for the query

说明

public MongoCursor MongoCursor::snapshot ( void )

Use snapshot mode for the query. Snapshot mode assures no duplicates are returned, or objects missed, which were present at both the start and end of the query's execution (if an object is new during the query, or deleted during the query, it may or may not be returned, even with snapshot mode).

Note that short query responses (less than 1MB) are always effectively snapshotted.

Currently, snapshot mode may not be used with sorting or explicit hints.

参数

此函数没有参数。

返回值

Returns this cursor.

错误/异常

Throws MongoCursorException if this cursor has started iterating.


MongoCursor
在线手册:中文 英文
PHP手册