Thanks for the tips. Most of these I am already aware of. You are very much right about reducing the number of requests to bare minimum. I was able to cut down from 28 to 12, but the last few are tricky because some connections are external files (ads, analytics, disqus). Also I don't think its as much as the number of the connection thats the problem but the number of DNS lookup that will cause more delay. So if you have 12 file thats spread around 3 different locations, its better than having 5 files spread around 5 different locations.
Concatenate is also a good idea, but in some cases it breaks some JavaScripts for me.
Personally I am happy with ~2s avg load time, just trying to see how far I can push that number.
Concatenate is also a good idea, but in some cases it breaks some JavaScripts for me.
Personally I am happy with ~2s avg load time, just trying to see how far I can push that number.