Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

MongoDB.CursorMore

Whether there may be more data.

Component Version macOS Windows Linux Server iOS SDK
MongoDB 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "MongoDB.CursorMore"; MongoDBRef )   More

Parameters

Parameter Description Example
MongoDBRef The reference number for the mongo connection. $MongoDB

Result

Returns 1, 0 or error.

Description

Whether there may be more data.
This function shall indicate if there is potentially more data to be read from the cursor.
This is only useful with tailable cursors. Use NextRecord() for regular cursors.

Details: mongoc_cursor_more is unreliable because it does not contact the server to see if there are actually more documents in the result set. It simply returns true if the cursor has not begun, or if it has begun and there are buffered documents in the client-side cursor, or if it has begun and the server has not yet told the cursor it is completely iterated.

This is unreliable with regular queries because it returns true for a new cursor before iteration, even if the cursor will match no documents. It is also true if the collection has been dropped on the server since the previous fetch, or if the cursor has finished its final batch and the next batch will be empty.

Returns true if the cursor has locally-buffered documents, or if a round-trip to the server might fetch additional documents.

See also

This function checks for a license.

Created 22nd May 2022, last changed 22nd May 2022


MongoDB.CursorLimit - MongoDB.CursorNext