{
"name" : "Michel",
"registered" : true,
languages : [ "c#", "python", "ruby" ],
"address" : {
"city" : "Londrina",
"state" : "PR"
"country" : "Brasil"
},
created_on : new Date()
}
Sem joins
Sem transações
Escalabilidade horizontal
db.products.aggregate([
{$group:
{
_id: {
"maker":"$manufacturer"
},
max_price:{$max:"$price"}
}
}
])
(mas não menos importante)