@@ -19,9 +19,6 @@ perform **bulk operations**.
19
19
Bulk operations perform multiple write operations against one or more
20
20
collections within a database. In MongoDB, you refer to a collection by combining
21
21
the database name and the collection name in the format ``<database>.<collection>``.
22
- Since you perform bulk operations on a ``MongoClient`` instance, you can perform
23
- bulk operations against any database and collection in the cluster accessed by
24
- your client.
25
22
26
23
Bulk operations help reduce the number of calls to the server. Instead of sending
27
24
a request for each operation, you can perform multiple operations within one action.
@@ -395,7 +392,7 @@ To learn more about any of the methods or types discussed in this
395
392
guide, see the following API documentation:
396
393
397
394
- `BulkWrite() <{+api+}/classes/Collection.html#bulkWrite>`__
398
- - `ClientBulkWriteResult <{+api+}/classes/BulkWriteResult.html>`__
395
+ - `BulkWriteResult <{+api+}/classes/BulkWriteResult.html>`__
399
396
- `InsertOneModel <{+api+}/classes/OrderedBulkOperation.html#insert>`__
400
397
- `InsertOne <{+api+}/classes/Collection.html#insertOne>`__
401
398
- `ReplaceOne <{+api+}/classes/Collection.html#replaceOne>`__
@@ -405,5 +402,4 @@ guide, see the following API documentation:
405
402
- `UpdateOneModel <{+api+}/interfaces/UpdateOneModel.html>`__
406
403
- `DeleteOne <{+api+}/classes/Collection.html#deleteOne>`__
407
404
- `DeleteMany <{+api+}/classes/Collection.html#deleteMany>`__
408
- - `DeleteOneModel <{+api+}/interfaces/DeleteOneModel.html>`__
409
- - `ClientBulkWriteException <{+api+}/classes/MongoClientBulkWriteExecutionError.html>`__
405
+ - `DeleteOneModel <{+api+}/interfaces/DeleteOneModel.html>`__
0 commit comments