In de shell kun je tenminste onderscheiden of het document is gewijzigd of niet (zie nModified
).
> db.test4.update({_id:2}, {$addToSet: {tags: "xyz" }})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.test4.update({_id:2}, {$addToSet: {tags: "xyz" }})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 0 })
Update voor Node
Wanneer u collection.update(criteria, update[[, options], callback]);
. gebruikt u kunt het aantal records ophalen dat is gewijzigd.
Vanaf het knooppunt docs
Nog een update
Het lijkt erop dat in versie 1.4.3 de native Mongo Node-driver zich niet gedraagt zoals beschreven. Het is mogelijk om de bulk-API te gebruiken (geïntroduceerd in Mongo 2.6):
var col = db.collection('test');
// Initialize the Ordered Batch
var batch = col.initializeOrderedBulkOp();
batch.find({a: 2}).upsert().updateOne({"$addToSet": {"tags": "newTag"}});
// Execute the operations
batch.execute(function(err, result) {
if (err) throw err;
console.log("nUpserted: ", result.nUpserted);
console.log("nInserted: ", result.nInserted);
console.log("nModified: ", result.nModified); // <- will tell if a value was added or not
db.close();
});