File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
source/fundamentals/crud/write-operations Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ fewer database calls. You can perform bulk write operations at the following lev
29
29
30
30
- :ref:`Collection <java-sync-coll-bulk-write>`: You can use the
31
31
``MongoCollection.bulkWrite()`` method to perform bulk write operations on a
32
- single collection. This method groups write operations together by the kind
33
- of operation . For example, ``MongoCollection.bulkWrite()`` puts multiple update
32
+ single collection. In this method, each kind of write operation requires at
33
+ least one database call . For example, ``MongoCollection.bulkWrite()`` puts multiple update
34
34
operations in one call, but makes two separate calls to the database for an insert
35
35
operation and a replace operation.
36
36
You can’t perform that action at this time.
0 commit comments