Sponsored Links

Senin, 06 November 2017

Sponsored Links

HTTP proxy server with caching, link-prefetching and checking for ...
src: i.ytimg.com

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.


Video Link prefetching



Prefetching in HTML5

There are two W3C standards covering prefetching for HTML5:

  • Link preload
    • Hints to specific URLs. Common hints include JavaScript, CSS, images and web fonts.
  • Resource hints
    • Hints to the browser. Common hints include DNS queries, opening TCP connections, and page pre-rendering.

HTML5 methods for prefetch hints:

  • Standard link prefetch (supported by most browsers):<link rel="prefetch" href="http://www.example.com/">
  • DNS prefetch (Mozilla Firefox, Google Chrome, and others):<link rel="dns-prefetch" href="http://example.com/">
  • Page pre-rendering (Google Chrome, Internet Explorer and others):<link rel="prerender" href="/page/to/prerender">
  • Lazy-load of images (Internet Explorer):<img src="image.jpg" lazyload>
  • Link for HTTP headers: Example below.
  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  

Prefetching

It is possible for implementations to prefetch links even when they are not specified as prefetch links.

  • Fasterfox has an option to enable the prefetching of all page links by the browser.

Maps Link prefetching



Browser support

Historical

  • iCab, Mozilla Application Suite, and WebTV are the first referenced browsers to support link prefetching.
  • Browsing using a Google Web Accelerator (discontinued product, may technically be called precaching)
  • The Blue Coat proxy appliance is known to use non-compliant prefetching.

Modern browsers

  • Mozilla Firefox supports DNS prefetching, as of version 3.5.
  • Google Chrome supports prefetching of linked web content by "prerendering", as of version 11.
  • Internet Explorer supports prefetching of IP addresses by "DNS prefetching", as of version 9.
    • As of version 11, Internet Explorer supports the following set of features to expand its prefetching capabilities: "prerender", "dns-prefetch" and "lazyload" (images only).

Link Prediction and Path Analysis using Markov Chains - ppt download
src: slideplayer.com


Sites using prefetching

  • 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.
  • Bing has employed the use of prefetching and preloading since the release of Internet Explorer 11 (October, 2013).

Bypass unsafe-inline mode CSP
src: ww2.sinaimg.cn


Issues and criticisms

An issue inherent to indiscriminate link prefetching involves the misuse of "safe" HTTP methods. The HTTP GET and HEAD requests are said to be "safe", i.e., a user agent that issues one of these requests should expect that the request results in no change on the recipient server. However, it's common for website operators to use these requests outside of this constraint. Plain hyperlinks (which almost universally result in GET requests) are often used to implement logout functionality and account verification, e.g., when a user completes an account creation form, and an automated service sends a verification e-mail to the user's given e-mail address. Similarly, it is entirely possible for a hosting service to provide a Web front end to manage files, including links that delete one or more files. Users who visit pages containing these types of links, (whilst using a browser which employs an indiscriminate link prefetcher), might find that they have been logged out or that their files have been deleted.

Additionally, there are a number of criticisms regarding the privacy and resource usage implications of link prefetching:

  • Users and website operators who pay for the amount of bandwidth they use find themselves paying for traffic for pages the user might not actually visit, and advertisers might pay for viewed ads on sites that are never visited.
  • Web statistics such as browser usage, search engine referers, and page hits may become less reliable due to registering page hits that were never seen by the user.
  • Users may be exposed to more security risks by downloading more pages, or from un-requested sites (additionally compounded as drive-by downloads become more advanced and diverse).
  • Users may violate acceptable-use policies of their network or organisation if prefetching accesses unauthorised content.

In the case of mobile devices or for users with a limited bandwidth allowance, prefetching may result in an unnecessary costly drain on limited bandwidth.

In the case of prerendering, Google warns that improper use may result in the aforementioned increased bandwidth usage, slower loading of other links, and slightly stale content.


How to Increase Webpage Speed by DNS Prefetch & Preconnect ...
src: 3.bp.blogspot.com


See also

  • Cache prefetching

Facebook's prefetching solution for slow website loading times
src: dash.mediaupdate.co.za


References


How to Increase Webpage Speed by DNS Prefetch & Preconnect ...
src: 3.bp.blogspot.com


External links

  • Mozilla Link Prefetching FAQ
  • Test for Prefetch support
  • Google's overview of prefetching and prerendering
  • Prerender and prefetch support in Internet Explorer 11

Source of the article : Wikipedia

Comments
0 Comments