filesystems - Storing Images: MongoDb vs File System -


i need store large number of images (from around 10,000 images per day) average size of around 1 10 mb each image.

i can store these images in mongodb using gridfs library or storing base64 conversion string.

my question that, mongodb suitable such payload or better use file system?

many thanks,

mongodb gridfs has lot of advantages on normal file system , able cope amount of data describing can scale out sharded mongo cluster. have not saved binary data in on own not think there real difference between binary data , text. so: yes, suitable payload.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -