Toggle table of contents sidebar
command_cursor
– Tools for iterating over MongoDB command results¶
CommandCursor class to iterate over command results.
Create a new command cursor.
collection (Collection[_DocumentType])
cursor_info (Mapping[str, Any])
address (Optional[_Address])
batch_size (int)
max_await_time_ms (Optional[int])
session (Optional[ClientSession])
explicit_session (bool)
comment (Any)
The (host, port) of the server used, or None.
Added in version 3.0.
Does this cursor have the potential to return more data?
Even if alive
is True
, next()
can raise StopIteration
. Best to use a for loop:
for doc in collection.aggregate(pipeline): print(doc)
Note
alive
can be True while iterating a cursor from a failed server. In this case alive
will return False after next()
fails to retrieve the next batch of results from the server.
Limits the number of documents returned in one batch. Each batch requires a round trip to the server. It can be adjusted to optimize performance and limit data transfer.
Note
batch_size can not override MongoDB’s internal limits on the amount of data it will return to the client in a single batch (i.e if you set batch size to 1,000,000,000, MongoDB will currently only return 4-16MB of results per batch).
Raises TypeError
if batch_size is not an integer. Raises ValueError
if batch_size is less than 0
.
batch_size (int) – The size of each batch of results requested.
CommandCursor[_DocumentType]
Explicitly close / kill this cursor.
None
Returns the id of the cursor.
Advance the cursor.
_DocumentType
The cursor’s ClientSession
, or None.
Added in version 3.6.
Converts the contents of this cursor to a list more efficiently than [doc for doc in cursor]
.
To use:
Or, so read at most n items from the cursor:
If the cursor is empty or has no more results, an empty list will be returned.
Added in version 4.9.
Advance the cursor without blocking indefinitely.
This method returns the next document without waiting indefinitely for data.
If no document is cached locally then this method runs a single getMore command. If the getMore yields any documents, the next document is returned, otherwise, if the getMore returns no documents (because there is no additional data) then None
is returned.
The next document or None
when no document is available after running a single getMore or when the cursor is closed.
_DocumentType | None
Added in version 4.5.
Create a new cursor / iterator over raw batches of BSON data.
Should not be called directly by application developers - see aggregate_raw_batches()
instead.
See also
The MongoDB documentation on cursors.
collection (Collection[_DocumentType])
cursor_info (Mapping[str, Any])
address (Optional[_Address])
batch_size (int)
max_await_time_ms (Optional[int])
session (Optional[ClientSession])
explicit_session (bool)
comment (Any)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4