Mobile app version of vmapp.org
Login or Join
Connie744

: Using Amazon S3 has increased the page load time? Why? I am optimising the page load time for my site. After a bunch of changes, the load time had decreased. As suggested by a lot of people,

@Connie744

Posted in: #AmazonS3 #Performance

I am optimising the page load time for my site. After a bunch of changes, the load time had decreased.

As suggested by a lot of people, I decided to use Amazon's S3 to store and serve my static content.

This increased the page load time by almost a whole second. Why does this happen and how can I optimise the same?

10.04% popularity Vote Up Vote Down


Login to follow query

More posts by @Connie744

4 Comments

Sorted by latest first Latest Oldest Best

 

@Jessie594

Jeremiah is right, you should choose solution that is geographicly optimized for you and your users. In case you ll deliver e.g. from US and you have bunch of customer in India, load time will be decreased.
What kind of static content do you have? Images compression and optimalization as said above should be easiest and quiet helpful solution, but imho you can optimize also storage of other content.

And ye, you should combine with some CDN, for price/power/portfolio comparation you can check e.g. CDN Planet, to find the best for you.

10% popularity Vote Up Vote Down


 

@Reiling115

The S3 server could be farther away from you and so it takes longer for the bytes to travel to you. Using Cloudfront or another CDN puts your content on very fast servers all across the world which will increase the speed not just for you, but for users all over no matter where they are located.

Cloudfront also supports compression all though you have to make sure it is enabled.

Another thing you could try to do is use image sprites and condense static CSS and Javascript into as few files as possible.

10% popularity Vote Up Vote Down


 

@LarsenBagley505

Moving images from one host to another isn't enough. First are your images compressed and optimized? Second you should be using a CDN as well as s3 together not just serving static content from s3. The CDN's will cache the static content coming from s3 and serve that to your visitors quicker than s3 would.

10% popularity Vote Up Vote Down


 

@Dunderdale272

Should you be using Amazon S3 or CloudFront? CloudFront is the CDN that accelerates the delivery of static assets.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme