Whats Your Average Site Load Time?

Usually if I'm allowed full access and the freedom to do whatever I think is best: <1 sec.
All I use is:
- Caching. Application and server level
- Minifying. CSS and JS can be reduced alot
- Compression. CSS and JS can yet again be reduced alot, along with the page itself
- Optimized images. Unless you need transparency or 1:1 quality it's almost always better to use jpgs for full photos. For smaller thing PNG I find comes out ahead in size lots of times.
- Proper headers. If the content doesnt change, set a long expires header so it won't request it.
- CDN. Images on a CDN along with javascript libraries. I always use googles cdn for things like jquery, mootools.
- If the budget is limited/not allowing for a CDN, use a local "CDN". Make a subdomain and put your static files on it. A subdomain is considered a new domain by browsers and essentially bypasses the concurrent thread limit (usually 3). This could potentially reduce load time by half. Image heavy sites could use something like: images.example.com (user images) static.example.com (js+css+layout)
- Lazy loading. If its an image heavy page, lazy loading is the way to go. It saves your viewer lots of bandwith (you too) and reduces load time. If you dont know what this is, it only loads the images in the viewport. If the viewport hasnt seen it, it doesnt load. You could stick 1000 images on 1 page and still only load 1 image.

If not:
1->30 seconds.
One client has tens of thousands of htaccess directives. The template system is destroyed by bypassing it and using PHP directly. There's atleast 500kB of javascript on the page due to sharethis, FB, twitter, sharethis, translate, livechat, popups etc.... Needless to say it takes forever to load.
 
Using CDN and wordpress customizations.
Page size1.0MB Load time455ms Requests84 Perf. grade88/100
 
My website loading stats. Page size 409.3kB Load time 3.58s Requests 45 Perf. grade 80/100
 
Page load time: 3.17s
Total page size: 864KB
Total number of requests: 114

decent people love it!
 
hxxps://developers.google.c0m/speed/pagespeed/ you might want to look into that to further reduce your page load times.
 
A Page Speed:
(92%)
D YSlow:
(66%)
Page load time: 2.95 seconds
Total page size: 1.28 MB
Total number of requests: 120

I fail bigtime on these and have no idea how to fix it.

[TABLE="class: styled-table rules"]
[TR="class: odd"]
[TD="class: rules-name"]Specify image dimensions[/TD]
[TD="class: rules-grade"]F (0)
[/TD]
[TD="class: rules-average"]50%
[/TD]
[TD="class: rules-type"]Images[/TD]
[TD="class: rules-weight"]High[/TD]
[/TR]
[TR="class: even"]
[TD="class: rules-name"]Combine images using CSS sprites[/TD]
[TD="class: rules-grade"]F (37)
[/TD]
[TD="class: rules-average"]63%
[/TD]
[TD="class: rules-type"]Images[/TD]
[TD="class: rules-weight"]Medium[/TD]
[/TR]
[TR="class: odd"]
[TD="class: rules-name"]Use efficient CSS selectors[/TD]
[TD="class: rules-grade"]F (0)
[/TD]
[TD="class: rules-average"]21%
[/TD]
[TD="class: rules-type"]CSS[/TD]
[TD="class: rules-weight"]Low[/TD]
[/TR]
[TR="class: even"]
[TD="class: rules-name"]Serve resources from a consistent URL[/TD]
[TD="class: rules-grade"]C (76)
[/TD]
[TD="class: rules-average"]94%
[/TD]
[TD="class: rules-type"]Content
[/TD]
[TD="class: rules-weight"]High


[/TD]
[/TR]
[/TABLE]

[TABLE="class: styled-table rules"]
[TR="class: even"]
[TD="class: rules-name"]Remove unused CSS[/TD]
[TD="class: rules-grade"]D (69.8)
[/TD]
[TD="class: rules-average"]63%
[/TD]
[TD="class: rules-type"]CSS[/TD]
[TD="class: rules-weight"]Low[/TD]
[/TR]
[/TABLE]
 
Page load time: 5.51s
Total page size: 677KB
Total number of requests: 88


 
mine varies based on load. if only a few visitors are on, i get sub 3sec. but after sharing a post on social network outlets it slows down quite a bit, to 7 - 12. I've been tuning it trying to bring it down. Less stuff on homepage, smaller images and using w3c plugin for wordpress. Looking into CDNs now.
 
Page load time: 3.76s
Total page size: 6.56MB
Total number of requests: 155

I still need to compress all my images, and add a cache plug-in, but the sites still under development so meh.
 
Used pingdom.com and my site tool 5.24 seconds with 2.2 MB page size.

I have noticed that some plugins can adversely impact page loading times.
 
around 3-4 seconds, having that long of a loading time can be bad and might actually devalue your site as a whole, google webcrawlers look for that.
 
around 2 secs here, I can't believe your site loads 13 secs..that's too long actually? maybe you did not compress the images? Please provide some info of your site...maybe we could help.
 
I ran P3 profiler for wordpress and it highlighted some issues. I adjusted some of my widgets on the home page, removed some redundant plugins. Went from 4-6 to about 2 sec.
 
Back
Top