$addToSet
không thêm mục vào trường nhất định nếu nó đã chứa nó, mặt khác $push
sẽ thêm đối tượng đã cho vào trường cho dù nó có tồn tại hay không.
{_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]}