Skip to content

Commit ed392b0

Browse files
committed
CC feedback
1 parent f1e159c commit ed392b0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

source/write/bulk-write.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ perform **bulk operations**. Bulk operations reduce the number
2525
of calls to the server by performing multiple write operations
2626
in a single method.
2727

28-
You can use bulk operations to perform multiple write operations on
29-
a collection. You can also call bulk operations on your client,
30-
which allows you to perform bulk writes across multiple namespaces.
31-
In MongoDB, a namespace consists of the database name and the collection
28+
The ``Collection`` and ``MongoClient`` classes both provide a ``bulk_write()``
29+
method. When calling ``bulk_write()`` on a ``Collection`` instance, you can
30+
perform multiple write operations on a single collection. When calling
31+
``bulk_write()`` on a ``MongoClient`` instance, you can perform bulk writes across
32+
multiple namespaces. In MongoDB, a namespace consists of the database name and the collection
3233
name in the format ``<database>.<collection>``.
3334

3435
.. important::

0 commit comments

Comments
 (0)