This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ MongoDB làm việc trên concept của collection và document. | |
+ Database là một dạng lưu trữ vật lý. Mỗi database có các field trong một file system. Một máy chủ mongoDB thông thường gồm nhiều database. | |
+ Collection là một khối các document MongoDB. Trong các document có các trường (field) khác nhau. 1 collection = n(document) = n(x(field)). | |
+ A document là một tập hợp các cặp key - value. | |
For example: { | |
_id: ObjectId(7df78ad8902c) | |
title: 'MongoDB Overview', | |
description: 'MongoDB is no sql database', | |
by: 'tutorials point', | |
url: 'http://www.tutorialspoint.com', |