Wikia: fast pages retain users

July 27, 2009 10:52 pm | 13 Comments

At OSCON last week, I attended Artur Bergman’s session about Varnish – A State of the Art High-Performance Reverse Proxy. Artur is the VP of Engineering and Operations at Wikia. He has been singing the praises of Varnish for awhile. It was great to see his experiences and resulting advice in one presentation. But what really caught my eye was his last slide:

Wikia measures exit rate – the percentage of users that leave the site from a given page. Here they show that exit rate drops as pages get faster. The exit rate goes from ~15% for a 2 second page to ~10% for a 1 second page. This is another data point to add to the list of stats from Velocity that show that faster pages is not only better for users, it’s better for business.

13 Responses to Wikia: fast pages retain users

  1. unfortunately I may confirm this fact for http://www.tamundo.de . Thank you very much for this graph

  2. Steve,

    I wonder if there is an easy way to gather this kind of data using traditional site access analytics tools in conjunction with performance analytics and if there is a tool that measures both?

    So far this is a big challenge to gather this kind of data, but if it was easy, it would be a great way to make a case for business to invest into web performance.

    Do you think Google Analytics can do something like that?

    Sergey

  3. Sergey,

    We use Google analytics calculate that.

    At the top of the page.

    /**/

    And then at the bottom:

    if (typeof window.wgNow == “object”){
    var now = new Date();
    var ms = (now.getTime() – window.wgNow.getTime()) / 1000;
    var pageTime = Math.floor(ms * 10) / 10; // Round to 1 decimal
    var slashtime = “/skin_name/” + pageTime.toString().replace(/\./, “/”);
    _uff=0;
    _uacct=”UA-xxxxxxx-42″;
    urchinTracker(slashtime);
    }

  4. Arthur,

    I’d suggest you use the built-in functionality that does what you want instead (Number.prototype.toFixed).

    if (typeof window.wgNow == ‘object’) {
    //var pageTime = ((new Date() – wgNow) / 1000).toFixed(1) // Round to 1 decimal
    //var slashtime = ‘/skin_name/’ + ((new Date() – wgNow) / 1000).toFixed(1).toString().replace(‘.’, ‘/’);
    _uff = 0;
    _uacct = ‘UA-xxxxxxx-42’;
    urchinTracker(‘/skin_name/’ + ((new Date() – wgNow) / 1000).toFixed(1).toString().replace(‘.’, ‘/’));
    }

  5. I have improved conversion rates by optimizing the website http://www.todocespedartificial.es. The result is better than expected.

  6. Oscar — how did you quantify the improvement in conversion rates? how did you correlate web site performance with your business performance?

  7. Hi Eric,

    the bounce rate has decreased from 25.91% to 21.45% and the conversions has increased.

  8. I wonder how the graph was sampled.

    The first thing that comes to mind is that the delay was not artificially (and randomly) generated.

    The faster pages (towards 1s) were those cached … which means they were the most visited and possibly with lower exit rate for other reasons other than time.

    Meaning that there could be correlation but not causality between time and exit rate. And the conclusions could therefore be very skewed.

    I browsed over the PDF but couldn’t read anything about how the sampling was done.

    Any ideas anyone ?

  9. @Jan: There’s no artificial delay. These are the actual load times of the pages.

  10. Be careful ! The wikia’s method is computing the time to render the page on browser because of javascript. In no case it’s the time to computing the page on their servers, neither the transfer time over the network. Especially since they use Varnish, pages are always buffered, therefor the javascript begin when when all the page have been sended.

  11. In addition, they should use something like jquery function “$(document).ready”, because in their method there is no guarantee that all images, js and css have been loaded.

  12. Hi Steve,

    I have a neet example too where you can see the following:
    – The more users the slower the page
    – The slower the page the more users abandon the page load (wether they click on the link before the page is completely loaded or the leave the page totally)
    Example here: http://www.kiutalk.de/jk/abandonment_chart.png

    If now the users leave the page before it is loaded completely it might not effect the conversion directly but everyone should be aware that users might not be tracked with all the fancy trackers which are located at the end of the list of objects to be loaded or where the postback is tied to the page completion event.

    This said: Be aware of the fact that users leave early and your numbers might be incorrect.

    Best regards
    Heiko