MongoDB – Map Reduce

As per the MongoDB documentation, Map-reduce is a data processing paradigm for condensing large volumes of data into useful aggregated results. MongoDB uses mapReduce command for map-reduce operations. MapReduce is generally used for processing…

Continue ReadingMongoDB – Map Reduce

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":…

Continue ReadingMongoDB – Advanced Indexing