vote up 15 vote down star
6

I'm thinking about developing my own PHP based gallery for storing lots of pictures, maybe in the tens of thousands.

At the database I'll point to the url of the image, but here's the problem: I know is impractical to have all of them sitting at the same directory in the server as it would slow access to a crawl, so, how would you store all of them? Some kind of tree based on the name of the jpeg/png?

What rules to partition the images would you recommend me?

(It will focused for using in cheapo dot coms, so no mangling with the server is possible)

flag

75% accept rate

8 Answers

vote up 15 vote down check

We had a similar problem in the past. And found a nice solution:

  • Give each image an unique guid.
  • Create a database record for each image containing the name, location, guid and possible location of sub images (thumbnails, reducedsize, etc.).
  • Use the first (one or two) characters of the guid to determine the toplevel folder.
  • If the folders have too much files, split again. Update the references and you are ready to go.
  • If the number of files and the accesses are too high, you can spread folders over different file servers.

We have experienced that using the guids, you get a more or less uniform division. And it worked like a charm.

Links which might help to generate a unique ID:

link|flag
If you use a database anyway, why not just make it a blob and let the database worry about it? – roe Jan 15 at 11:26
because of performance, database calls are usually really expensive especially for binary data like images. – Mike Geise Jan 15 at 11:32
not to mention that serving images out of the database means you pretty much always send the data where as if you can serve from the file system you can let the browser/server handle caching of images – MikeJ Mar 24 at 12:31
vote up 2 vote down

I worked on an Electronic Document Management system a few years ago, and we did pretty much what Gamecat and wic suggested.

That is, assign each image a unique ID, and use that to derive a relative path to the image file. We used MOD similar to what wic suggested, but we allowed 1024 folders/files at each level, with 3 levels, so we could support 1G files.

We stripped off the extension from the files however. The DB records contained the MIME Type, so extension was not needed.

I would not recommend storing the full URL in the DB record, only the Image ID. If you store the URL you can't move or restructure your storage without converting your DB. A relative URL would be ok since that way you can at least move the image repository around, but you'll get more flexibility if you just store the ID and derive the URL.

Also, I would not recommend allowing direct references to your image files from the web. Instead, provide a URL to a server-side program (e.g., Java Servlet), with the Image ID being supplied in the URL Query (http://url.com/GetImage?imageID=1234).

The servlet can use that ID to look up the DB record, determine MIME Type, derive the actual location, check for security restrictions, logging, etc.

link|flag
good points. does the servlet request still allow for caching ? i am looking at a similar problem but in my app the transfer time is critical so I was looking for ways to cache the images on the client. Am I dreaming? – MikeJ Mar 24 at 12:35
@MikeJ: You could create a separate class for access to the images. That class would know how to derive a path from an id, etc. It could also contain a cache, possibly as a hashtable that you manage yourself, or maybe a canned cache class. Servlet would get images from this object, not from disk. – Clayton Mar 24 at 17:05
vote up 5 vote down

I usually just use the numerical database id (auto_increment) and then use the modulu (%) operator to figure out where to put the file. Simple and scalable. For instance the path to image with id 12345 could be created like this:

12345 % 100 = 45
12345 % 1000 = 345

Ends up in:

/home/joe/images/345/45/12345.png

Or something like that.

If you're using Linux and ext3 and the filesystem, you must be aware that there are limits to the number of directories and files you can have in a directory. The limit is 32000 for dirs, so you should always strive to keep number of dirs low.

link|flag
vote up 0 vote down

You could alawys have a DateTime column in the table and then store them in folders named after the month,year or even month,day,year the images where added to the table.

Example

  1. 2009
  2. -01
  3. --01
  4. --02
  5. --03
  6. --31

this way you end up with no more then 3 folders deep.

link|flag
vote up 0 vote down

You can store the images in the database as blobs (varbinary for mssql). That way you don't have to worry about the storage or directory structure. The only downside is that you can't easily browse the files, but that would be hard in a balanced directory tree anyway.

link|flag
vote up 0 vote down

If the pictures you're handling are digital photographs, you could use EXIF data to sort them, for example by capture date.

link|flag
vote up 0 vote down

You may check out the stratey used by Apple iPod for storing it's multimedia content. There are folders in one level of depth and files with titles of same width. I believe that Apple guys invested a lot of time in testing their solution so it may bring some instant benefit to you.

link|flag
I'm not too clear what you mean here. Can you give an example? – rikh Jan 15 at 11:14
vote up 0 vote down

Use the hierarchy of the file system. ID your images using something like 001/002/003/004.jpg would be very helpful. Partitioning is a different story, though. Could be random, content based, creation date based, etc. Really depends on what your application is.

link|flag

Your Answer

Get an OpenID
or

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