NoSQL- Is it suitable for storing images?

只谈情不闲聊 提交于 2019-12-13 02:33:12

问题


I would like to store millions of images using a distributed fault tolerant system. While storing images in relational database has never been recommended, I was wondering if it is a suitable approach to store and manage image files in NoSQL databases.

I would appreciate if you could share your experience in details here. (i.e. what NoSQL database did you use? it's advantages and disadvantages in this case, etc)

Thanks


回答1:


MongoDB has an API called GridFS which was made for storing binary files on the database cluster.

But just as with relational databases, storing files in a filesystem on a SAN is often a faster, more efficient, more maintainable and safer alternative.



来源:https://stackoverflow.com/questions/18819292/nosql-is-it-suitable-for-storing-images

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!