Ask Yoast: Word order of your focus keyword
If you’re using Yoast SEO to optimize your posts and pages, it’ll ask you to fill out a focus keyword. This is the search term you want your content to rank for. Deciding on a focus keyword can be challenging. For example, if you want to optimize your content for a long tail keyword – existing of […]
Faster Sites: Beyond PageSpeed Insights
Posted by BenjaminEstes
Google’s PageSpeed Insights is an easy-to-use tool that tests whether a web page might be slower than it needs to be. It gives a score to quantify page performance. Because this score is concrete, the PageSpeed Insights score is often used as a measure of site performance. Similarly to PageRank years back, folks want to optimize this number just because it exists. In fact, Moz has a popular article on this subject: How to Achieve 100/100 with the Google Page Speed Test Tool.
For small sites on common CMSes (think Wordpress), this can be accomplished. If that’s you, PageSpeed Insights is a great place to start. For most sites, a perfect score isn’t realistic. So where do we start?
That’s what this post is about. I want to make three points:
- Latency can hurt load times more than bandwidth
- PageSpeed Insights scores shouldn’t be taken at face value
- Improvement starts with measurement, goal setting, and prioritization
I’m writing with SEO practitioners in mind. I’ll skip over some of the more technical bits. You should walk away with enough perspective to start asking the right questions. And you may make better recommendations as a result.
|
Disclaimer: HTTP2 improves some of the issues discussed in this post. Specifically, multiple requests to the same server are less problematic. It is not a panacea. |
Latency can hurt load times more than bandwidth
A first look at PageSpeed Insights’ rules could make you think it’s all about serving fewer bytes to the user. Minify, optimize, compress. Size is only half the story. It also takes take time for your request simply to reach a server. And then it takes time for the server to respond to you!
What happens when you make a request?
If a user types a URL into a browser address bar and hits enter, a request is made. Lots of things happen when that request is made. The very last part of that is transferring the requested content. It’s only this last bit that is affected by bandwidth and the size of the content.
Fulfilling a request requires (more or less) these steps:
- Find the server
- Connect to the server
- Wait for a response
- Receive response
Each of these steps takes time, not just the last. The first three are independent of file size; they are effectively constant costs. These costs are incurred with each request regardless of whether the payload is a tiny, minified CSS file or a huge uncompressed image.
Why does it take time to get a response?
The factor we can’t avoid is that network signals can’t travel faster than the speed of light. That’s a theoretical maximum; in reality, it will take longer than that for data to transfer. For instance, it takes light about 40ms for a round trip between Paris and New York. If it takes twice that time for data to actually cross the Atlantic, then the minimum time it will take to get a response from a server is 80ms.
This is why CDNs are commonly used. CDNs put servers physically closer to users, which is the only way to reduce the time it takes to reach the server.
How much does this matter?
Check out this chart (from Chrome’s DevTools):

The life of a request, measured by Chrome Dev Tools.
All of the values in the red box are what I’m considering “latency.” They total about 220ms. The actual transfer of content took 0.7ms. No compression or reduction of filesize could help this; the only way to reduce the time taken by the request is to reduce latency.
Don’t we need to make a lot of requests to load a page?
It’ll take more than one request to load all of the content necessary to render a page. If that URL corresponded to a webpage, the browser will usually discover that it needs to load more resources to render the page. These could be CSS, JavaScript, or font files. It must recursively go through the same steps listed above to load each of these files.
Fortunately, once a server has been found (“DNS Lookup” in the image above), the browser won’t need to look it up again. It will still have to connect, and we’ll have to wait for a response.
A skeptical read of PageSpeed Insights tests
All of the PageSpeed Insights evaluations cover things that can impact site speed. For large sites, some of them aren’t so easy to implement. And depending on how your site is designed, some may be more impactful than others. That’s not to say you have an excuse not to do these things — they’re all best-practice, and they all help. But they don’t represent the whole site speed picture.
With that in mind, here’s a “skeptical reading” of each of the PageSpeed Insights rules.
Tests focusing on reducing bandwidth use
|
Rule |
Skeptical reading |
|---|---|
|
Optimize images |
Unless you have huge images, this might not be a big deal. This is only measuring whether images could be further compressed — not whether you’re loading too many. |
|
Enable compression |
Compression is easy. You should use it. It also may not make much of a difference unless you have (for instance) huge JavaScript files loading. |
|
Minify HTML |
Will likely reduce overhead only by tens of KB. Latency will have a bigger impact than response size. |
|
Minify CSS |
Will likely reduce overhead only by tens of KB. Latency will have a bigger impact than response size. |
|
Minify JS |
Probably not as important as consolidating JS into a single file to reduce the number of requests that have to be made. |
Tests focusing on reducing latency
|
Rule |
Skeptical reading |
|---|---|
|
Leverage browser caching |
Definitely let’s cache our own files. Lots of the files that could benefit from caching are probably hosted on 3rd-party servers. You’d have to host them yourself to change cache times. |
|
Reduce server response time |
Threshold on PSI is too high. It also tries to exclude the physical latency of the server—instead looking only at how long it takes the server to respond once it receives a request. |
|
Avoid landing page redirects |
Yes. |
|
Eliminate render-blocking JavaScript and CSS in above-the-fold content |
A valid concern, but can be frustratingly difficult. Having zero requests on top of the initial page load to render above-the-fold content isn’t necessary to meet most performance goals. |
|
Prioritize visible content |
Actually kind of important. |
Don’t treat these as the final word on site performance! Independent of these tests, here are some things to think about. Some aren’t covered at all by PageSpeed Insights, and some are only covered halfway:
- Caching content you control.
- Reducing the amount of content you’re loading from 3rd-party domains.
- Reducing server response time beyond the minimum required to pass PageSpeed Insights’ test.
- Moving the server closer to the end user. Basically, use a CDN.
- Reducing blocking requests. Ensuring you’re using HTTP2 will help here.
How to start improving
Measurement
The screenshots in this post are created with Chrome DevTools. It’s built into the browser and allows you to inspect exactly what happens when a page loads.
Instead of trusting the Pagespeed Insights tool, go ahead and load your page in Chrome. Check out how it performs. Look at what requests actually seem to take more time. Often the answer will be obvious: too much time will be spent loading ads, for instance.
Goal setting
If a perfect PageSpeed Insights score isn’t your goal, you need to know what your goal will be. This is important, because it allows you to compare current performance to that goal. You can see whether reducing bandwidth requirements will actually meet your goal, or whether you also need to do something to reduce latency (use a CDN, handle fewer requests, load high-priority content first).
Prioritizing
Prioritizing page speed “fixes” is important — that’s not the only type of prioritization. There’s also the question of what actually needs to be loaded. PageSpeed Insights does try to figure out whether you’re prioritizing above-the-fold content. This is a great target. It’s also not a perfect assessment; it might be easier to split content into “critical” and “non-critical” paths, regardless of what is ostensibly above the fold.
For instance: If your site relies on ad revenue, you might load all content on the page and only then begin to load ads. Figuring out how to serve less is a challenge best tackled by you and your team. After all, PageSpeed Insights is a one-size-fits-all solution.
Conclusion
The story so far has been that PageSpeed Insights can be useful, but there are smarter ways to assess and improve site speed. A perfect score doesn’t guarantee a fast site.
If you’re interested in learning more, I highly recommend checking out Ilya Grigorik’s site and specifically this old-but-good introduction deck. Grigorik is a web performance engineer at Google and a very good communicator about site speed issues.
Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!
Google’s Mother’s Day Logo In Cactus Plants
Today is Mother’s Day in the United States and some other countries and to celebrate, Google has a special Google logo, a Doodle, for the day.
This Doodle shows a larger cactus planting the seeds for a new cactus and then taking care of the baby cactu…
Mike B around the Web
Here are some places that wrote/spoke/recorded last week on the inter webs: Google and Local Search Success – a great conversation with Joy Hawkins about Google Local, tips for success, editing and rank as well as a discussion about her new Expert’s Guide to Local SEO, Also available as a podcast. Video: Last Week in Local … Continue reading Mike B around the Web →
New RLSA Strategies for Search Marketers
Search advertising is quickly becoming personal – as mobile dominates desktop and keywords are only part of the equation. If you’re not using RLSAs – Remarketing Lists for Search Ads – you are missing out on a key opportunity to make highly targeted, personalized ads an important part of your paid…
Please visit Search Engine Land for the full article.
4 critical areas to consider when performing AdWords audits
AdWords audits are a great way to win business and check on the health of an account, but columnist Matt Umbro notes that there are some aspects of an audit that are easily overlooked or underexplored. Don’t make these mistakes!
The post 4 critical ar…
Google is rolling out new keyword bidding suggestions in AdWords
The new feature shows suggested bids for various page positions.
The post Google is rolling out new keyword bidding suggestions in AdWords appeared first on Search Engine Land.
Please visit Search Engine Land for the full article.
Google AdSense Reissue Check Issue Larger Bug
Rachel from the Google AdSense team posted an update in the Google AdSense Help thread less than an hour ago that using the reissue check feature in Google may be having issues…
Google Merchant Center Bug: Unexpected Image Processing Errors
For the past few days, Google Merchant Center has been plagued with a bug named unexpected image processing error. This started back on May 9th and is still an issue a few days later…
Google: Not Trying 404 Pages Isn’t A Sign Of Crawl Issues
The other day I reported that Google Crawls 404s After Other Pages So No Crawl Budget Is Sacrificed…
SEO vs. PPC: Pros, cons & an integrated approach
Not sure whether your business would benefit more from paid or organic search marketing efforts? Columnist Marcus Miller breaks them both down, providing insight into where they fit within your larger marketing plan.
The post SEO vs. PPC: Pros, cons &…
Search in Pics: Google tower viewer, metro train hallway & ceiling of balls
In this week’s Search In Pictures, here are the latest images culled from the web, showing what people eat at the search engine companies, how they play, who they meet, where they speak, what toys they have and more. Google tower viewer: Source: Instagram YouTube balloon bike: Source:…
Please visit Search Engine Land for the full article.
Google: Geotargeting Promotes But Hreflang Does Not Promote A Site/Page
Google’s John Mueller answered a geotargeting and hreflang question in the Google Webmaster Help forums…
How video impacts mobile web performance and UX, part 1: data and download speed
Video content is top of the agenda for many brands. It is proving a great way to engage customers and visitors, but when viewed on mobile devices, often video should come with a health warning. Why does mobile video impact page performance, and what can be done about it?
How do I determine what my cornerstone articles are?
Cornerstone articles are those articles that are most important to your website. These are the articles you would like to rank high in the search engines. Cornerstone articles are usually explainers; relatively long articles combining insights from different blog posts. Perhaps you never thought about cornerstone articles before, even if you have your website for […]
Bing Ads To Stop Supporting Creation Of Standard Text Ads On July 31st
Bing announced that starting July 31st, 2017 they will stop supporting the creation of new and editing of existing standard text ads. Advertisers will only…
Snap eats a 2.2 billion loss, disclosing sharply slowing user growth
Is the party already ending before is started for snap?
read more