Mobile app version of vmapp.org
Login or Join
Ravi8258870

: How can I tell Chrome to use all 6 concurrent connections asap? I would like to improve rendering performance of http://www.camping.info/campinplaetze. Running a test on WebPageTest.org I see in

@Ravi8258870

Posted in: #Connections #GoogleChrome #Performance

I would like to improve rendering performance of www.camping.info/campinplaetze. Running a test on WebPageTest.org I see in the waterfall chart that for images loaded from images-camping.info, Chrome initially opens only three connections, and only at the 2 second marks opens another three. That's why the first 6 images are loaded consecutively, all on the third open connection as seen in the connection view:




I would like Chrome to open the six concurrent connections to images-camping.info around the 1 second mark so that it could download more images in parallel which I assume would make rendering the page faster.

Does anyone know of a way to do that?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Ravi8258870

2 Comments

Sorted by latest first Latest Oldest Best

 

@Odierno851

Short Answer - every browser has a specific limit to open parallel connections. In the case of Chrome this limit is 10.

If I was there, I would do only two things:


Optimize images - If you're using png files, then I suggest to use tinypng.com, because it compresses images well, compared to Google PageSpeed module.
Serve Images from CDN - Use Amazon Cloudfront CDN to serve images, because image URL begin with Amazon Cloudfront URL, so you don't need to use second domain, here is an example of how they serve images with their domain name. CDN helps in many ways.

10% popularity Vote Up Vote Down


 

@Nimeshi995

I can't give you a fullfit answer because I am not sure if you can tell Chrome how to load your page, but least you can do is to optimize your website.


Starting with Expire Headers, make sure they are working
correctly, not just for images but for basically everything.
Optimize the pictures in your website, I believe you have done that
but if you haven't yet, then use an online convertor like
tinypng.com or other to compress your images.
Use .gzip
compression for src files and minify them.


There are sure more things to dig into performance optimization but I think you should consider to start with these three basic things and if they help you I can give you further advices.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme