$addToSet
アイテムがすでに含まれている場合は、指定されたフィールドにアイテムを追加しないでください。一方、$push
指定されたオブジェクトが存在するかどうかに関係なく、フィールドに追加されます。
{_id: "docId", items: [1, 2]}
db.items.update({_id:"docId"}, {$addToSet:{items: 2}}); // This won't update the document as it already contains 2
db.items.update({_id:"docId"}, {$push: {items:2}}); // this will update the document. new document {_id: "docId", items:[1,2,2]}