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.

I am working on a online shopping website, it will have product images also. I have confusion regarding were i should store images. If I store these images in the database image url must be kept into the database and if i store image in blob format i have to decode it before using in php. Can anyone tell which one will be better choice?

share|improve this question
1  
Store the image on the filesystem and the URL in the database. – Rakkun Jun 25 '12 at 5:18
Oh, btw. Please read this also. stackoverflow.com/questions/3748/… – Aruman Feb 26 at 16:25

1 Answer

up vote 4 down vote accepted

I think the best solution is to keep the Database clean of any images. Below are number of reasons -

  • Database will soon start to grow
  • File system is good for storing files
  • You have put extra effort to decode them in PHP(Resource overhead)
  • Many databases I have studied keep the images in the File System (WordPress source)

Hope it helps

share|improve this answer
+1 for this point. "You have put extra effort to decode them in PHP(Resource overhead)" – Aruman Feb 26 at 16:23

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.