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

สร้างดัชนีใหม่ใน MongoDB หรือไม่


หากต้องการสร้างดัชนีใหม่ ให้ใช้ reIndex() ให้เราสร้างดัชนีก่อน ต่อไปนี้เป็นแบบสอบถาม -

> db.demo42.createIndex({"StudentFirstName":1});

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

{
   "createdCollectionAutomatically" : true,
   "numIndexesBefore" : 1,
   "numIndexesAfter" : 2,
   "ok" : 1
}

ต่อไปนี้เป็นแบบสอบถามเพื่อสร้างดัชนีใหม่ใน MongoDB -

> db.demo42.reIndex({"StudentFirstName":1});

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

{
   "nIndexesWas" : 2,
   "nIndexes" : 2,
   "indexes" : [
      {
         "v" : 2,
         "key" : {
            "_id" : 1
         },
         "name" : "_id_",
         "ns" : "web.demo42"
      },
      {
         "v" : 2,
         "key" : {
            "StudentFirstName" : 1
         },
         "name" : "StudentFirstName_1",
         "ns" : "web.demo42"
      }
  ],
   "ok" : 1
}