You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All options are documented in the reference page for `the "find" command`_ in the MongoDB server manual, except for "maxAwaitTimeMS".
129
+
130
+
"maxAwaitTimeMS" is the maximum amount of time for the server to wait on new documents to satisfy a query, if "tailable" and "awaitData" are both true.
131
+
If no new documents are found, the tailable cursor receives an empty batch. The "maxAwaitTimeMS" option is ignored for MongoDB older than 3.4.
132
+
127
133
For some options like "collation", the driver returns an error if the server version is too old to support the feature.
128
134
Any fields in ``opts`` that are not listed here are passed to the server unmodified.
129
-
130
135
131
136
See Also
132
137
--------
133
138
134
-
`The "find" command<https://docs.mongodb.org/master/reference/command/find/>`_ in the MongoDB Manual. All options listed there are supported by the C Driver.
139
+
`The "find" command`_ in the MongoDB Manual. All options listed there are supported by the C Driver.
135
140
For MongoDB servers before 3.2, or for exhaust queries, the driver transparently converts the query to a legacy OP_QUERY message.
0 commit comments