Computer >> Máy Tính >  >> Lập trình >> MongoDB

Tạo chỉ mục trong bộ sưu tập MongoDB?

Để tạo chỉ mục, hãy sử dụng createIndex () trong MongoDB. Hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -

> db.demo702.createIndex({"details.id":1});
{
   "createdCollectionAutomatically" : true,
   "numIndexesBefore" : 1,
   "numIndexesAfter" : 2,
   "ok" : 1
}
> db.demo702.insertOne({
...    "details" : [
...       {
...          id:101,
...          studentInfo:{
...             "StudentName" : "Chris",
...             "StudentAge" : 23,
...          }
...       },
...    {
...
...       id: 102,
...       studentInfo:{
...          "StudentName" : "Robert",
...          "StudentAge" : 20,
...       }
...    }
... ]
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5ea6ea3b551299a9f98c93b3")
}

Hiển thị tất cả các tài liệu từ một bộ sưu tập với sự trợ giúp của phương thức find () -

> db.demo702.find().pretty();

Điều này sẽ tạo ra kết quả sau -

{
   "_id" : ObjectId("5ea6ea3b551299a9f98c93b3"),
   "details" : [
      {
         "id" : 101,
         "studentInfo" : {
            "StudentName" : "Chris",
            "StudentAge" : 23
         }
      },
      {
         "id" : 102,
         "studentInfo" : {
            "StudentName" : "Robert",
            "StudentAge" : 20
         }
      }
   ]
}