When using mongoimport
to import files into MongoDB, you have the option of specifying a mode to use. These modes determine what happens if there’s already matching documents in the collection that you’re trying to import into.
By default, mongoimport
uses insert
mode, but there are other modes you can use. The mode you use will depend on what you’re trying to do.
Below is an overview of each mode along with examples.
Continue reading