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

สร้างดัชนีในพื้นหลังด้วย MongoDB


ในการสร้างดัชนีในพื้นหลัง ให้ใช้เมธอด createIndex() และตั้งค่า “พื้นหลัง:จริง” ตามรูปแบบต่อไปนี้ -

db.yourCollectionName.createIndex({"yourFieldName1":1,"yourFieldName2":1},{background: true} );

ให้เราใช้ไวยากรณ์ข้างต้นเพื่อสร้างดัชนีและตั้งค่าพื้นหลัง -

> db.indexCreationDemo.createIndex({"StudentName":1,"StudentAge":1},{background: true} );
{
   "createdCollectionAutomatically" : true,
   "numIndexesBefore" : 1,
   "numIndexesAfter" : 2,
   "ok" : 1
}

ให้เราแสดงดัชนี -

> db.indexCreationDemo.getIndexes();

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

[
   {
      "v" : 2,
      "key" : {
         "_id" : 1
      },
      "name" : "_id_",
      "ns" : "web.indexCreationDemo"
   },
   {
      "v" : 2,
      "key" : {
         "StudentName" : 1,
         "StudentAge" : 1
      },
      "name" : "StudentName_1_StudentAge_1",
      "ns" : "web.indexCreationDemo",
      "background" : true
   }
]