Author Archives: user

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

MongoDB – Indexing Limitations In this chapter, we will learn about Indexing Limitations and its other components. Extra Overhead Every index occupies some space as well as causes an overhead on each insert, update and delete. So if you rarely use your collection for read operations, it makes sense not to use indexes. RAM Usage […]

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

MongoDB – Advanced Indexing we have inserted the following document in the collection named users as shown below − db.users.insert( { “address”: { “city”: “Los Angeles”, “state”: “California”, “pincode”: “123” }, “tags”: [ “music”, “cricket”, “blogs” ], “name”: “Tom Benzamin” } ) The above document contains an address sub-document and a tags array. Indexing Array […]