最近專案有用到這個
有看到使用Robo 3T
但對這一塊不是很了解
這邊主要是紀錄如何操作 MonogoDB
不會記載 MonogoDB 詳細知識
有哪幾種 NoSQL?(4 種)
- Key-value store
ex: BigTable、Hadoop - Document store
ex: MongoDB - Graph
ex: Neo4J - 列存儲(Wide Column Store/Column-Family)資料庫(記憶體資料庫是知名網站慣用快取工具)
ex: Memcached、Redis、Velocity
簡單架設 MonogoDB
docker 架設
vagrant
homestead 可以架設
或者比較單純Vagrant box benson/mongodb - Vagrant Cloud 或 Update to Mongo v3 · Issue #5 · bobthecow/vagrant-mongobox
操作使用
local,config,admin databases
預設安裝完會看到有三個 databaselocal
,config
,admin
三個 database 建議不要去動他
admin and local contain various settings local to the server, like users who are authenticated to connect. Under beginner usage, you shouldn’t need to worry about them at all. By default you connect to a database named test. To connect to a new database, just use databasename from the mongo command line, or mongo databasename from your OS shell.
use [database_name] and then show collections
The db object is your root handle to the currently-selected database on the mongo commmand line. The command line is really just a Javascript command line, and there are various mongodb-specific objects and functions exposed that let you do stuff. Try help() for a full listing.
Some beginner’s questions about MongoDB - Stack Overflow
MongoDB 管理:慎用 local、admin 数据库 | MongoDB 中文社区
mysql <=> mongodb
MySQL MongoDB
Table <==> Collection
Row <=> Document
Column <=> Field
MongoDB and MySQL Compared | MongoDB
操作使用
創建資料庫
use DATABASE_NAME
如果資料庫不存在,則創建資料庫,否則切換到指定資料庫。
刪除資料庫
db.dropDatabase()
刪除所在的 Database
创建集合(Collection)
db.createCollection(name, options)
db.createCollection("mycol", { capped : true, autoIndexId : true, size : 6142800, max : 10000 }
創建固定集合 mycol,整個集合空間大小 6142800 KB, 文檔最大個數為 10000 個。
插入文件(Document)
db.COLLECTION_NAME.insert(document)
1 | db.col.insert({ |
查詢集合
db.col.find()
刪除文件
1 | db.collection.remove( |
1 | remove() 方法已經過時了,現在官方推薦使用 deleteOne() 和 deleteMany() 方法。 |
修改文件
1 | db.collection.update( |
1 | 在3.2版本开始,MongoDB提供以下更新集合文档的方法: |
更多內容可看MongoDB 教程 | 菜鸟教程
由於裡面教學應該是 2.x 版
可以看評論裡面補充很多東西
Robo 3T 操作 MongoDB
MongoDB 可视化工具–Robo 3T 使用教程 - 龙恩 0707 - 博客园
adminMongo
刪除資料 OR 篩選資料 的問題
「乾貨」mongoDB 釋放磁碟占用 - 每日頭條
目前專案裡面放的資料好像不會去做刪除或者撈出來資料不會做篩選
不知道是不是非常耗效能關係??