關鍵詞: 慢 mysql
NoSql ---> Not only sql linux
對數據格式一致性要求不嚴格
較強的擴展須要數據庫作緩存時sql
sudo apt-get install mongodb
www.mangodb.com ----> try free ---> Server ---> 選版本下載
brew install mongodb
自動安裝位置 : /var/lib/mangodb 配置文件: /etc/mangodb.conf 命令集: /usr/bin
mongod 配置基本信息mongodb
經常使用參數,其餘不經常使用的在 -h 裏面本身查吧shell
-h / help 查看幫助 --dbpath 設置數據庫存儲位置 --port 設置端口,默認 27017
mongo 進入moongo shell 界面數據庫
quit() / ctrl+c 退出
鍵值對----> 文檔-----> 集合-----> 數據庫編程
------------------------------------
| mysql | mongoDB | 含義 |
------------------------------------
| database | database | 表/集合 |
------------------------------------
| table | collection | 字段/域 |
------------------------------------
| row | field | 記錄/文檔 |
------------------------------------
| index | index | 索引 |
------------------------------------
-----------------
ID | NAME | AGE |
-----------------
1 | yang | 18 |
-----------------
2 | tuo | 16 |
-----------------
{ "ID" : 1, "NAME" : "yang", "AGE" : 18 }, { "ID" : 2, "NAME" : "tuo", "AGE" : 16 },
所謂靈活性: 一個集合中,不須要對文檔的結構有限制,每一個文檔(記錄)均可以隨意自主的格式
簡單來講,mysql 中的表的每行數據都要有固定的格式,不存在的字段必需要設置爲空。windows