views:

27

answers:

2

Hi Guys,

I'm building a website that stores a lot of community-generated multimedia.

I originally wanted to store the data in my own SAN, but for scalability purposes I'm looking for a solution to store all the images outside my network and request them by HTTP request connectors.

I also want a solution that will let me grow in space easily by clustering or by other way.

I guess that there is a term for what I'm looking for, but I'm really not sure what it is.

I'm not sure if this question belongs to SO or ServerFault. I'm asking from the perspective of a web developer, but maybe it qualifies best for a networking question. My apologies if I'm wrong.

Best to all and wish you a happy new year.

+3  A: 

Well, there have been a lot of services offering just that, the most popular being Amazon's S3 ( used for example at 37Signal ). A lot of libraries exist for almost any language being used in webdev, so maybe thats something to get you started!

moritz
Perfect answer .. yes, it's exactly what I'm looking for, but what term should I use to refer (by eg. in google) to find alternatives to amazon S3. Can I say that it 's cloud computing storage or is there any more specific term that applies to this one?
demian
A: 

Here are a few services you could use:

The terms you are looking for is "cloud storage" and optionally "content delivery network" or CDN for short. For example on Amazon, S3 is the cloud storage and CloudFront the CDN.

bobdiaes