Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a "standard" way of storing photos on the web, when working with photo galleries? Is it bad practice to store photos in a mysql database? Should I store the photo in a folder, and store the link in a database?

What is "good practice" when talking about storing photos, to use on a website?

share|improve this question

2 Answers

up vote 1 down vote accepted

You can store photos in your database using the different BLOB data types. If the photos are excessive in quantity, or extra large, the database my start to take a performance hit and will increase in size drastically. Essentially, if you have 100 10Mb photos, that's 1,000Mb or around a Gb of size that the database will grow. Backups will take forever to execute, and if a table containing the images corrupts for whatever reason, it'll induce more headache than you'll care to deal with.

My suggestion as imoda recommends is to store them on a hard drive, and link to them in the database where you'll hold all of the metadata and a link to the location of the file. Best practice is to store the photo's file name in the database, and rename the file to use the primary key's value as the file name As an example, row 5 associates to photo "x" where x is the filename, store it on the hard drive and rename the photo to the file name of 5, and then when you go to access it for things like download, you'll pull the actual file name from row 5 in the database and rename it before you download it. That'll keep from accidentally overwriting the file if you happen to upload two or more files with the same file name.

share|improve this answer
Well, they are not for downloading, but I get the point. I was just wondering, what is "best practice" since I'm new to photo galleries :) Thanks for your answer – hogni89 Jun 25 '11 at 0:32
Your welcome. There's a giant debate today with regards to whether or not BLOBS should be used, with strong arguments on both sides, but it has to be determined when put into context. One thing I did not mention is doing checks to ensure that files do not go missing off the file server without having their records deleted from the database. Shouldn't happen, but it can. Might suggest setting up an automated task to check every so often to ensure the documents still exist and take action if they don't (obviously an argument the pro-BLOB side would use). – Scott Jun 25 '11 at 0:57

99% of the time you don't want to store a photo in a MySQL database. It's incredibly resource intensive if done improperly. Store your photos in directories on your website and store the path to them in your database.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.