Asynchronous Google Analytics snippets (v21)

Revision 21 of this benchmark created on


Description

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

Ready to run.

Testing in
TestOps/sec
Default snippet
// async test

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-XXXX-Y', 'auto');
ga('send', 'pageview');
 
ready
Optimized snippet
// async test
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'));
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.