Definición
MongoDB\BulkWriteCommandResultEsta clase contiene información sobre una operación de escritura masiva completada por el cliente. Se devuelve desde
MongoDB\Client::bulkWrite().
Métodos
Método | Descripción |
|---|---|
| Returns the total number of documents inserted by all
insert operations in the bulk write command. |
| Returns the total number of documents matched by all
update and replace operations in the bulk write command. |
| Returns the total number of documents modified by all update
and replace operations in the bulk write command. |
| Returns the total number of documents upserted by all update
and replace operations in the bulk write command. |
| Return the total number of documents deleted by all delete
operations in the bulk write command. |
| Returns a map of results of each successful insert operation. Each
operation is represented by an integer key, which contains a
document with information corresponding to the operation such
as the inserted _id value. |
| Returns a map of results of each successful update operation. Each
operation is represented by an integer key, which contains a
document with information corresponding to the operation. |
| Returns a map of results of each successful delete operation.
Each operation is represented by an integer key, which contains
a document with information corresponding to the operation. |
| Returns a boolean indicating whether the server acknowledged
the bulk operation. |
Para obtener más información sobre los datos devueltos por el servidor cuando se realiza una operación de guardar masiva del cliente, consulte la Output sección de la referencia del método de shell Mongo.bulkWrite.
Ver también
Sección de escritura en lote de clientes de la guía de operaciones de escritura en lote