Our application will be serving a large number of small, thumbnail-size images (about 6-12KB in size) through HTTP. I\'ve been asked to investigate whether using a NoSQL dat
Whether or not to store images in a DB or the filesystem is sometime one of those "holy war" type of debates; each side feels their way of doing things is the one right way. In general:
To store in the DB:
To store on the filesystem:
I tend to come down on the side of the filesystem because it scales much better. But depending on the size of your project, either choice will likely work fine. With NoSQL, the differences are even less apparent.