Query Optimizer and Indexing in MongoDB
What is indexing in MongoDB? Basically, index is a part of data structure that helps to find or search data from the collection in an efficient manner. But MongoDB indexing eases this process and find the data by matching queries without performing whole collection scan. If a collection is well indexed, then MongoDB uses the […]