Is it possible to do bulk update/upsert (not insert) in MongoDB?
If yes, please point me to any docs related to this?
Thanks
|
|
|
You can use the command line program mongoimport it should be in your MongoDB bin dir ... There are two options you'll want to look into to use upsert ...
More info here: http://www.mongodb.org/display/DOCS/Import+Export+Tools Or just do ...
|
|||
|
|
I believe this what you where looking for:
http://docs.mongodb.org/manual/applications/update/
|
|||
|
|