Mobile app version of vmapp.org
Login or Join
Carla537

: What percent of visitors should click on the next page before you enable prefetching? Mozilla Firefox and Google Chrome support prefetching via an HTML tag: <!-- in chrome --> <link rel="prerender"

@Carla537

Posted in: #Dns #Performance

Mozilla Firefox and Google Chrome support prefetching via an HTML tag:

<!-- in chrome -->
<link rel="prerender" href="http://example.org/index.html">


I suppose it is always worthwhile to include this tag if 100% of users on a page click on the "Next Page" button or similar, and never worthwhile to include it if only 2% or 3% of users visit the following page. At what percent of clicks should you turn on prefetching of the next page? 65%? Also, does the calculus change if the current page is HTTP and the next page is HTTPS?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Carla537

1 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

As usual, it depends.


How much extra load are you willing to take on your web servers?
Could they handle an additional hit for every load of the first page?
Do you pay for bandwidth, would your current bucket support doubling the calls?


if the answer to all of the above is "We have the technology!" then why not provide your users a better experience by pre-fetching?

To specifically address the question about HTTPs see the existing Cost of using SSL here on webmasters.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme