Jump to content

Link prefetching

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 1.200.11.228 (talk) at 17:31, 16 April 2022. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Link prefetching allows web browsers to pre-load resources. This speeds up both the loading and rendering of web pages. Prefetching was first introduced in HTML5.

Prefetching is accomplished through hints in web pages. These hints are used by the browser to prefetch links. Resources which can be prefetched include: JavaScript, CSS, image, audio, video, and web fonts. DNS names and TCP connections can also be hinted for prefetching. [1][2]

Prefetching in HTML5

There are two W3C standards covering prefetching for HTML5:

  • Link preload[1]
  • Resource hints[2]
    • Hints to the browser. Common hints include DNS queries, opening TCP connections, and page pre-rendering.

HTML5 methods for prefetch hints:

Link: <//pagead2.googlesyndication.com>; rel=dns-prefetch,
      </js/bootstrap.min.js>; as=script; rel=preload,
      </ads.html>; rel=prerender,
      </css/bootstrap.min.css>; as=style; rel=preload

Browser support

Browser Prefetching Supported
Standard link prefetching DNS prefetching Prerendering Lazy-load (Images)
Android browser Yes[5] No[5] No[5] No
Chromium Yes[5] Yes[5] Yes[5] No
Google Chrome Yes[5] Yes[5] Yes[5] No
Internet Explorer Yes[6] Yes[6] Yes[6] Yes[6]
Mozilla Firefox Yes[5] Yes[5] No[7] No
Opera Yes[5] No[5] No[5] No
Safari No[5] Yes[5] No[5] No

Historical

Modern browsers

  • Mozilla Firefox supports DNS prefetching, as of version 3.5.[9]
  • Google Chrome supports prefetching of linked web content by "prerendering", as of version 11.[10]
  • Internet Explorer supports prefetching of IP addresses by "DNS prefetching", as of version 9.[11]
    • As of version 11, Internet Explorer supports the following set of features to expand its prefetching capabilities: "prerender", "dns-prefetch" and "lazyload" (images only).[6]
  • Google is the most well-known website that takes advantage of this feature so as to improve the user experience. If the first hit is considered very probable to be the desired hit, it is assigned as a prefetchable link.
    • Specifically, Google implemented "Google Instant Pages" in August 2011 which takes advantage of the aforementioned feature, predictive search completion, and preloading search results as the user types in order to improve the performance of the search engine.[12]
  • Bing has employed the use of prefetching and preloading since the release of Internet Explorer 11 (October 2013).[6]

==

See also

References

  1. ^ a b "Preload". w3c.github.io. Retrieved 2016-03-19.
  2. ^ a b "Resource Hints". w3c.github.io. Retrieved 2016-03-19.
  3. ^ "Web Linking". RFC 5988. IETF. Retrieved 2016-03-19.
  4. ^ "Resource Hints (Example 6)". Resource Hints: W3C Working Draft. W3C. Retrieved 2016-10-31.
  5. ^ a b c d e f g h i j k l m n o p q "Prebrowsing". Steve Souders. 2013-10-07.
  6. ^ a b c d e f "Getting to the Content You Want, Faster in IE11". IEBlog, Microsoft. 2013-12-04. Archived from the original on 2014-05-12.
  7. ^ "Bug 730101 - Implement prerendering in Firefox". Mozilla. 2014-10-18.
  8. ^ Fisher, Darin; Saksena, Gagan. "Link Prefetching in Mozilla: A Server-Driven Approach" (PDF). Retrieved 2014-05-09.
  9. ^ "Controlling DNS prefetching". Retrieved 2014-05-09.
  10. ^ "Web Developer's Guide to Prerendering in Chrome". Retrieved 2014-05-09.
  11. ^ "Internet Explorer 9 Network Performance Improvements". Retrieved 2014-05-09.
  12. ^ "About Google Instant". Retrieved 2014-05-09.