在MongoDB里面支持大數(shù)據(jù)的存儲(例如圖片、音樂、各種二進(jìn)制數(shù)據(jù)),但是這個做法需要用戶自己進(jìn)行處理,使用“mongofiles”命令完成。
1、利用命令行進(jìn)入到圖片所做的路徑
[root@D2-LZY245 ~]# cd /root/
2、將文件保存到文件庫之中
[root@D2-LZY245 ~]# mongofiles put Tulips.jpg
2017-08-17T11:01:24.787+0800 connected to: localhost
added file: Tulips.jpg
此時會向數(shù)據(jù)庫里面寫入要保存的二進(jìn)制數(shù)據(jù)。
3、查看保存的文件
[root@D2-LZY245 ~]# mongofiles list
2017-08-17T11:02:56.059+0800 connected to: localhost
Tulips.jpg 620888
4、在MongoDB里面有一個fs的系統(tǒng)集合,這個集合默認(rèn)保存在了test數(shù)據(jù)庫下。
范例:查看保存的信息
> use test
switched to db test
> show collections;
fs.chunks
fs.files
> db.fs.files.find()
{ "_id" : ObjectId("599507041764d541df4535ce"), "chunkSize" : 261120, "uploadDate" : ISODate("2017-08-17T03:01:24.798Z"), "length" : 620888, "md5" : "fafa5efeaf3cbe3b23b2748d13e629a1", "filename" : "Tulips.jpg" }
5、刪除文件
[root@D2-LZY245 ~]# mongofiles delete Tulips.jpg
2017-08-17T11:07:46.001+0800 connected to: localhost
successfully deleted all instances of 'Tulips.jpg' from GridFS
在MongoDB里面支持二進(jìn)制數(shù)據(jù)的保存,但是存在的意義不大?;旧喜辉陧?xiàng)目中使用。
名稱欄目:MongoDB之GridFS
網(wǎng)站路徑:
http://weahome.cn/article/jhejjp.html