sql >> Databáze >  >> NoSQL >> MongoDB

Mapa Snížení pomocí mongo na vnořený dokument

Příklady Mongo map-reduce lze nalézt zde:http://docs. mongodb.org/manual/tutorial/map-reduce-examples/

Počet dokumentů pro každou jedinečnou n-tici country_id, city_id a region_id je jednoduchý:

> function m() { 
    for(var i in this.cities) {     
         emit({country_id:this.country_id, 
               city_id:this.cities[i].city_id,
               region_id:this.regions.region_id}, 
              1); 
    } }



> function r(id,docs) {
      return Array.sum(docs);
}
> db.loc.mapReduce(m,r,{out:"map_reduce_out"})
{
    "result" : "map_reduce_out",
    "timeMillis" : 5,
    "counts" : {
        "input" : 1,
        "emit" : 6,
        "reduce" : 0,
        "output" : 6
    },
    "ok" : 1,
}
> db.map_reduce_out.find()
{ "_id" : { "country_id" : 328, "city_id" : 817, "region_id" : 796 }, "value" : 1 }
{ "_id" : { "country_id" : 328, "city_id" : 18851, "region_id" : 796 }, "value" : 1 }
{ "_id" : { "country_id" : 328, "city_id" : 19398, "region_id" : 796 }, "value" : 1 }
{ "_id" : { "country_id" : 328, "city_id" : 31022, "region_id" : 796 }, "value" : 1 }
{ "_id" : { "country_id" : 328, "city_id" : 31101, "region_id" : 796 }, "value" : 1 }
{ "_id" : { "country_id" : 328, "city_id" : 31102, "region_id" : 796 }, "value" : 1 }


  1. mongodb se dotazuje jak s AND, tak s OR

  2. JSON serializující Mongodb

  3. Změňte tvar všech dokumentů ve sbírce

  4. MongoDB – Přineste si vlastní SSL certifikáty