Skip to content

Instantly share code, notes, and snippets.

View habvh's full-sized avatar
:octocat:
Hihi

Bùi Văn Hà habvh

:octocat:
Hihi
View GitHub Profile
+ 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',