Reputation: 14513
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
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
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