My question is not about storing images on disk or in DB.

  • Images will be stored on disk
  • Image path and other image data will be saved in database.
  • Images will be given a unique filename
  • Images will be stored in 3 sizes
  • In time there may be many images used by many users

My questions are:
- Should images be stored in one folder, or many folders?
- Is it ok to use md5 for creating unique id's? E.g. md5(id+filename+random_num)
- Should images be cached on server or on clients browser / computer?

Anything else I should think of?

The solution is using php, apache and mysql. We use Uploadify for uploading images.

Some code I use today

  /**
   * Calculate dir tree for object
   * Folders starts from 00 to FF (HEX) and can have just as
   * many subfolders (I think :)
   * @param $id - User ID
   * @param $type - Image category
   * @return string
   */
  function calculateDirTree($id, $type)
  {
      $hashUserID   = substr(hash('md5', $id), -4);
      $parentFolder = substr($hashUserID,0,2);
      $subfolder    = substr($hashUserID,2);    
      $basePath     = $type."/".$parentFolder.'/'.$subfolder.'/';

      return $basePath;
  }  
link|improve this question

75% accept rate
How many images do you estimate you will have ? Hundreds ? Thousands ? Hundreds of thousands ? – SoboLAN Jan 25 at 9:08
For the next few years I estiamte around 100k - 200k images. – Steven Jan 25 at 9:18
Will you use same file name as the user has uploaded, then if you store in the same folder then there may be a chance you might replace a image, if it has the same filename as a previously uploaded image. – Naveen Kumar Jan 25 at 9:44
@naveen - read my Q. Images will be given a unique filename – Steven Jan 25 at 9:48
feedback

5 Answers

Depending on the number of images you want to handle, I would strongly suggest using several folders. The easiest way should be to use the first letter of the file name to create a folder structure. I think, the numbers are something like this:

less than 1000 images  --> one folder
less than 20000 images --> one level of folders (a, b, c, ...)
more                   --> several levels (a containing aa, ab, b containing ba, bb, ...)

YMMV

link|improve this answer
I've added the file structure I used in my test. I'm considering if I should stick to this. – Steven Jan 25 at 9:27
feedback

Should images be stored in one folder, or many folders?

You are talking about "100k - 200k images" so many folders is a must have. Try to have max. ~1000 images in on folder.

Is it ok to use md5 for creating unique id's? E.g. md5(id+filename+random_num)

Yes, you can do this. It will avoid problems with long filenames.

Should images be cached on server or on clients browser / computer?

The should be cached on the client side. The problem with so many images is that it creates high traffic. Caching on the client help reducing this.

link|improve this answer
feedback

I think using multiple folders or same folder is dependent on your web application. For instance, if there are multiple profiles with each profile having multiple images, you can use multiple folders with using folder names as profile names.

My last advice is if you have tons of images sha256 encryption algorithm is better for preventing collision

link|improve this answer
feedback

Regarding the caching, it would be best to cache it at both ends, that way new images are retrieved quickly, and users visiting existing images have it cached.

I don't know of any filesystem limits regarding storing them in one or multiple folders.

link|improve this answer
feedback

definetely go for the File System: it's more performant and fits better for storing files (that's what is made for). Sql can slow down when saving/retrieving large images. You can create a folder for each user (using the ID as the folder name) and when an image is saved on the file system you can save the reference on a UserImages table (by saving the filename against the user on sql). You can ensure that each image got a unique filename by renaming it when you saving it, you can use a combination of the original filename with the actual DateTime (no need of using MD5). Also, images should always be cached in order to save yours and the clients bandwith.

link|improve this answer
If you read my question, I'm not asking if disk or DB is best. Also, you have just described (in more words) my question above. – Steven Jan 25 at 9:24
Hi Steven, if you read again my answer, I've tried to answer your questions, if it's not clear: 1) Yes you should split the images across multiple folders (best one folder per user). 2) No, you don't need md5 for the filename, just use the DateTime of the upload. 3) Yes you should cache the images if the same image on the server doesn't change (es: the image is cropped and maintains the same file name). If that's not what you're looking for please reformulate your question. – Giorgio Minardi Jan 25 at 9:51
feedback

Your Answer

 
or
required, but never shown

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