少なくともシェルでは、ドキュメントが変更されたかどうかを区別できます(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 })
ノードの更新
collection.update(criteria, update[[, options], callback]);
を使用する場合 変更されたレコードの数を取得できます。
ノードから
別の更新
少なくともバージョン1.4.3では、ネイティブのMongoNodeドライバーが文書化されているように動作していないようです。バルクAPI(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();
});