Asynchronous Google Analytics snippets

JavaScript performance comparison

Revision 9 of this test case created by Shidhin

Info

Test case which measures the speed difference between the default asynchronous Google Analytics snippet and the optimized version.

Note that I commented out the s.parentNode.insertBefore(g, s); line in both scripts, since otherwise the <script> element gets inserted a few thousand times every time you run the tests. Since this code is the same in both scripts, it shouldn’t have an influence on the results.

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
Default snippet
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
 var ga = document.createElement('script');
 ga.type = 'text/javascript';
 ga.async = true;
 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
 var s = document.getElementsByTagName('script')[0];
 // s.parentNode.insertBefore(ga, s);
})();
pending…
Optimized snippet
var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
(function(d, t) {
 var g = d.createElement(t),
     s = d.getElementsByTagName(t)[0];
 g.async = 1;
 g.src = '//www.google-analytics.com/ga.js';
 // s.parentNode.insertBefore(g, s);
}(document, 'script'));
pending…
My Optimized snippet
var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
(function(d, t,v) {
for($ in d)v.push(d[$]);
 var g = v[34](t),
     s = v[30](t)[0];
 g.async = 1;
 g.src = '//www.google-analytics.com/ga.js';
 // s.parentNode.insertBefore(g, s);
}(document, 'script',[]));
pending…

Compare results of other browsers

Revisions

You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:

0 comments

Add a comment