MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDb:differenza tra $push/$addtoset

$addToSet non aggiungere l'elemento al campo indicato se lo contiene già, invece $push aggiungerà l'oggetto specificato al campo indipendentemente dal fatto che esista o meno.

{_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]}