In this chapter, we look at issues relating to the performance of data manipulation statements. These statements (insert, update, and delete) alter the information contained within your MongoDB database.
Even in transaction processing environments, most database activity is related to data retrieval. You have to find data in order to change or delete it, and even insert operations often involve queries to obtain lookup keys or to embed data held in other collections. For this reason, the majority ...