This content originally appeared on web.dev and was authored by Milica Mihajlija
Before the browser can request a resource from a server, it must establish a connection. Establishing a secure connection involves three steps:
-
Look up the domain name and resolve it to an IP address.
-
Set up a connection to the server.
-
Encrypt the connection for security.
In each of these steps the browser sends a piece of data to a server, and the server sends back a response. That journey, from origin to destination and back, is called a round trip.
Depending on network conditions, a single round trip might take a significant amount of time. The connection setup process might involve up to three round trips—and more in unoptimized cases.
Taking care of all that ahead of time makes applications feel much faster. This post explains how to achieve that with two resource hints: <link rel=preconnect>
and <link rel=dns-prefetch>
.
Establish early connections with rel=preconnect
Modern browsers try their best to anticipate what connections a page will need, but they cannot reliably predict them all. The good news is that you can give them a (resource ?) hint.
Adding rel=preconnect
to a <link>
informs the browser that your page intends to establish a connection to another domain, and that you'd like the process to start as soon as possible. Resources will load more quickly because the setup process has already been completed by the time the browser requests them.
Resource hints get their name because they are not mandatory instructions. They provide the information about what you'd like to happen, but it's ultimately up to the browser to decide whether to execute them. Setting up and keeping a connection open is a lot of work, so the browser might choose to ignore resource hints or execute them partially depending on the situation.
Informing the browser of your intention is as simple as adding a <link>
tag to your page:
<link rel="preconnect" href="https://example.com">
You can speed up the load time by 100–500 ms by establishing early connections to important third-party origins. These numbers might seem small, but they make a difference in how users perceive web page performance.
chrome.com improved Time To Interactive by almost 1 s by pre-connecting to important origins.
Use-cases for rel=preconnect
Knowing where from, but not what you're fetching
Due to versioned dependencies, you sometimes end up in a situation where you know you'll be requesting a resource from a particular CDN, but not the exact path for it.
The other common case is loading images from an image CDN, where the exact path for an image depends on media queries or runtime feature checks on the user's browser.
In these situations, if the resource you'll be fetching is important, you want to save as much time as possible by pre-connecting to the server. The browser won't download the file until your page requests it, but at least it can handle the connection aspects ahead of time, saving the user from waiting for several round trips.
Streaming media
Another example where you may want to save some time in the connection phase, but not necessarily start retrieving content right away, is when streaming media from a different origin.
Depending on how your page handles the streamed content, you may want to wait until your scripts have loaded and are ready to process the stream. Pre-connecting helps you cut the waiting time to a single round trip once you're ready to start fetching.
How to implement rel=preconnect
One way of initiating a preconnect
is adding a <link>
tag to the <head>
of the document.
<head>
<link rel="preconnect" href="https://example.com">
</head>
Preconnecting is only effective for domains other than the origin domain, so you shouldn't use it for your site.
Caution: Only preconnect to critical domains you will use soon because the browser closes any connection that isn't used within 10 seconds. Unnecessary preconnecting can delay other important resources, so limit the number of preconnected domains and test the impact preconnecting makes.
You can also initiate a preconnect via the Link
HTTP header:
Link: <https://example.com/>; rel=preconnect
A benefit of specifying a preconnect hint in the HTTP header is that it doesn't rely on markup being parsed, and it can be triggered by requests for stylesheets, scripts, and more. For example, Google Fonts sends a Link
header in the stylesheet response to preconnect to the domain that hosts the font files.
Some types of resources, such as fonts, are loaded in anonymous mode. For those you must set the crossorigin
attribute with the preconnect
hint:
<link rel="preconnect" href="https://example.com/ComicSans" crossorigin>
If you omit the crossorigin
attribute, the browser only performs the DNS lookup.
Resolve domain name early with rel=dns-prefetch
You remember sites by their names, but servers remember them by IP addresses. This is why the domain name system (DNS) exists. The browser uses DNS to convert the site name to an IP address. This process — domain name resolution— is the first step in establishing a connection.
If a page needs to make connections to many third-party domains, preconnecting all of them is counterproductive. The preconnect
hint is best used for only the most critical connections. For all the rest, use <link rel=dns-prefetch>
to save time on the first step, the DNS lookup, which usually takes around 20–120 ms.
DNS resolution is initiated similarly to preconnect
: by adding a <link>
tag to the <head>
of the document.
<link rel="dns-prefetch" href="http://example.com">
Browser support for dns-prefetch
is slightly different from preconnect
support, so dns-prefetch
can serve as a fallback for browsers that don't support preconnect
.
Conclusion
These two resource hints are helpful for improving page speed when you know you'll download something from a third-party domain soon, but you don't know the exact URL for the resource. Examples include CDNs that distribute JavaScript libraries, images or fonts. Be mindful of constraints, use preconnect
only for the most important resources, rely on dns-prefetch
for the rest, and always measure the impact in the real-world.
This content originally appeared on web.dev and was authored by Milica Mihajlija
Milica Mihajlija | Sciencx (2019-07-30T00:00:00+00:00) Establish network connections early to improve perceived page speed. Retrieved from https://www.scien.cx/2019/07/30/establish-network-connections-early-to-improve-perceived-page-speed/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.