Amazon S3 Best Practices

I am making a site similar to flickr, and I was wondering if it is possible to save and save all images to / from S3?

If so, are there any best practices or lessons you can take?

thank

+3
source share
3 answers

Yes, S3 is well-suited for storing images for a site like Flickr.

Understand the consequences of choosing a bucket name . It's not funny moving millions of files between buckets.

For busy sites, you can easily add ClouldFront to get a reliable CDN network and lower data costs.

Consider using EC2 for application servers; There is no data transfer fee between EC2 and S3.

+5

, .

Amazon AWS SDK: AWS SDK .NET, AWS SDK Java

SDK. .

0

Always check for errors. Is always. Repeat the request if necessary. S3 API error rates sometimes increase, and your application should handle this correctly.

0
source

All Articles