tom
tom

Reputation: 14513

GAE vs S3 for storing images/pictures

My webservice is running on GAE, and I am plan to provide feature to allow users to upload their pictures to share with others. To naturally GAE is my first resort for storing the pictures. But at the same time, I heard a lot good things about S3. I wonder if there is a comparison between the two in terms of storing images/pictures, cost, performance etc. Has anyone done that before?

Upvotes: 3

Views: 991

Answers (2)

Tom van Enckevort
Tom van Enckevort

Reputation: 4198

You could also look into Google Storage for Developers, which is more of a direct competitor to Amazon's S3 than GAE is.

Upvotes: 0

Amber
Amber

Reputation: 527378

GAE rates for storing files: http://code.google.com/appengine/docs/quotas.html#Blobstore

S3 rates for storing files: http://aws.amazon.com/s3/pricing/

Upvotes: 4

Related Questions