Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MongoDB

จะเร่งความเร็ว $group phase ในการรวมได้อย่างไร?


หากต้องการเร่งความเร็วเฟสกลุ่ม $ ให้ใช้ $group พร้อมกับการรวม ให้เราดูตัวอย่างและสร้างคอลเลกชันที่มีเอกสาร -

> db.demo423.insertOne({"Information":[101,110,87,110,98,115,101,115,89,115]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e73a60e9822da45b30346e6")
}

แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้วิธี find() -

> db.demo423.find();

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

{ "_id" : ObjectId("5e73a60e9822da45b30346e6"), "Information" : [ 101, 110, 87, 110, 98, 115, 101, 115, 89, 115 ] }

ต่อไปนี้เป็นแบบสอบถามเพื่อเพิ่มความเร็ว $group phase ในการรวม -

> db.demo423.aggregate([
...    {
...       $project: {_id: 0, 'Information': 1}
...    },
...    {
...       $unwind: '$Information'
...    },
...    {
...       $group:{_id: '$Information', frequency:{$sum: 1}}
...    },
...    {
...       $sort:{frequency:-1}
...    },
...    {
...       $limit:2
...    }
... ])

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

{ "_id" : 115, "frequency" : 3 }
{ "_id" : 110, "frequency" : 2 }