db.collection.save()
最后更新于
db.products.save( { item: "book", qty: 40 } ){ "_id" : ObjectId("50691737d386d8fadbd6b01d"), "item" : "book", "qty" : 40 }db.products.save( { _id: 100, item: "water", qty: 30 } ){ "_id" : 100, "item" : "water", "qty" : 30 }{ "_id" : 100, "item" : "water", "qty" : 30 }db.products.save( { _id : 100, item : "juice" } ){ "_id" : 100, "item" : "juice" }db.products.save(
{ item: "envelopes", qty : 100, type: "Clasp" },
{ writeConcern: { w: "majority", wtimeout: 5000 } }
)