Bạn có thể sử dụng $redact
giai đoạn để thực hiện điều này. Nó tránh việc sử dụng $sort
và sau đó thực hiện lại $group
hoặc $unwind
.
-
$group
bởi_id
và nhận đượcmax_num_sold
tối đa cho mỗi nhóm, tích lũy tất cả các tài liệu trong nhóm bằng cách sử dụng$push
toán tử. -
$redact
thành các tài liệu phụ cho mỗi nhóm, chỉ giữ những tài liệu cómax_num_sold
trongnum_sold
của họ
mã mẫu:
db.getCollection('sales').aggregate([
{$group:{"_id":"$hash",
"max_num_sold":{$max:"$num_sold"},
"records":{$push:"$$ROOT"}}},
{$redact:{$cond:[{$eq:[{$ifNull:["$num_sold","$$ROOT.max_num_sold"]},
"$$ROOT.max_num_sold"]},
"$$DESCEND","$$PRUNE"]}},
])
dữ liệu thử nghiệm:
db.getCollection('sales').insert([
{"title":"Foo","hash":17,"num_sold":49,"place":"ABC"},
{"title":"Bar","hash":18,"num_sold":55,"place":"CDF"},
{"title":"Baz","hash":17,"num_sold":55,"place":"JKN"},
{"title":"Spam","hash":17,"num_sold":20,"place":"ZSD"},
{"title":"Eggs","hash":18,"num_sold":20,"place":"ZDF"}
])
kết quả kiểm tra:
{
"_id" : 18,
"max_num_sold" : 55,
"records" : [
{
"_id" : ObjectId("567874f2b506fc2193a22696"),
"title" : "Bar",
"hash" : 18,
"num_sold" : 55,
"place" : "CDF"
}
]
}
{
"_id" : 17,
"max_num_sold" : 55,
"records" : [
{
"_id" : ObjectId("567874f2b506fc2193a22697"),
"title" : "Baz",
"hash" : 17,
"num_sold" : 55,
"place" : "JKN"
}
]
}