Category Archives: mongodb

Khóa học miễn phí MongoDB – Delete Document nhận dự án làm có lương

MongoDB – Delete Document In this chapter, we will learn how to delete a document using MongoDB. The remove() Method MongoDB”s remove() method is used to remove a document from the collection. remove() method accepts two parameters. One is deletion criteria and second is justOne flag. deletion criteria − (Optional) deletion criteria according to documents […]

Khóa học miễn phí MongoDB – Indexing nhận dự án làm có lương

MongoDB – Indexing Indexes support the efficient resolution of queries. Without indexes, MongoDB must scan every document of a collection to select those documents that match the query statement. This scan is highly inefficient and require MongoDB to process a large volume of data. Indexes are special data structures, that store a small portion of […]