SlideShare ist ein Scribd-Unternehmen logo
1 von 151
Downloaden Sie, um offline zu lesen
HTTP/3
@TomAnthonySEO
An accessible guide for SEOs 
Photo by Max Baskakov on Unsplash
Photo by Paolo Feser on Unsplash
HyperText Transport Protocol
@TomAnthonySEO
HTTP is how webpages are transported to the browser
The Great HTTPS Migration
@TomAnthonySEO
Just 2 years ago*
* Corona years
Since then HTTP/2 has become increasingly popular…
https://www.brainlabsdigital.com/marketing-library/the-intro-guide-to-http-2-for-seos/
@TomAnthonySEO
HTTP/3 is on its way!
@TomAnthonySEO
Nov 2020 - Chrome & Edge
Feb 2021 - Opera
Apr 2021 - Firefox
May 2021 - Chrome for Android
Sep 2020 - Safari (optional)
@TomAnthonySEO
🤯
HTTP
HTTPS HTTP/2
HTTP/3
By the end of this presentation you will…
@TomAnthonySEO
‣ Know what HTTP is


‣ Understand HTTP/2 and HTTP/3


‣ Be able to explain the benefits of each
HTTP/1.1


The original recipe
Anatomy of an HTTP/1.1 request
@TomAnthonySEO
GET /anchorman/ HTTP/1.1
@TomAnthonySEO
GET /anchorman/ HTTP/1.1


Host: www.ronburgundy.com


Anatomy of an HTTP/1.1 request
@TomAnthonySEO
GET /anchorman/ HTTP/1.1


Host: www.ronburgundy.com


User-Agent: chrome v81
Anatomy of an HTTP/1.1 request
Anatomy of an HTTP/1.1 response
@TomAnthonySEO
HTTP/1.1 200 OK


Content-Type: text/html


Headers
Anatomy of an HTTP/1.1 response
@TomAnthonySEO
HTTP/1.1 200 OK


Content-Type: text/html


<html>


<head>


<title>Ron’s Page</title>


</head>


<body>


You stay classy, San Diego!


</body>


</html>
Headers
Body
HTTP Trucks!
Imagine an HTTP request is a truck, sent from your
browser to a server to collect a web page.
@TomAnthonySEO
HTTP Requests
Outbound trucks carry an HTTP request.
Request
@TomAnthonySEO
HTTP Responses
Returning trucks carry an HTTP response.
Response
@TomAnthonySEO
TCP/IP
TCP is the road; the transport layer for HTTP.
@TomAnthonySEO
Unlike real roads, these roads are private, and disappear!
TCP connections aren’t shared between users.


When you leave a site, they disappear.
@TomAnthonySEO
1 request is for 1 file
@TomAnthonySEO
Browser opening a web page
Let’s picture loading a webpage…
@TomAnthonySEO
Browser opening a web page
The browser has to send a request truck for the HTML.
@TomAnthonySEO
Browser opening a web page
@TomAnthonySEO
50ms
Browser opening a web page
@TomAnthonySEO
50ms
Browser opening a web page
@TomAnthonySEO
50ms
1 Webpage is many files
@TomAnthonySEO
Browser opening a web page
@TomAnthonySEO
The HTML response references many other files.


Now they must be collected.
Often 50-150 (or more!) separate HTTP requests
1 connection can handle 1 request
Every truck needs its own road.
@TomAnthonySEO
Browsers can handle multiple connections
@TomAnthonySEO
Each TCP connection takes time to open.
Think of it as a steamroller laying down the road.
@TomAnthonySEO
Each TCP connection takes time to open.
Opening a new connection requires a full round trip,


before we can send a truck down it.
@TomAnthonySEO
Browsers open about 6 connections maximum.
Mmmmm…. trucks.
@TomAnthonySEO
Requests are queued
Trucks need to wait for a free road.
@TomAnthonySEO
Problem 1: Each connection needs to be opened first
@TomAnthonySEO
Each road takes time to build. Slow to build roads.
Problem 2: Trucks are open.
@TomAnthonySEO
People can look into passing trucks!
Steal our emails / bank details / passwords.
@TomAnthonySEO
HTTP/1.1: Slow & insecure.
HTTP 1.1
PROS
CONS
NOTES
HTTP 1.1
PROS
CONS
NOTES
• Response is a Header + Body


• 1 request = 1 file
HTTP 1.1
PROS
CONS
NOTES
• Response is a Header + Body


• 1 request = 1 file
• Widely supported


• Fairly straightforward
HTTP 1.1
PROS
CONS
NOTES
• Response is a Header + Body


• 1 request = 1 file
• Widely supported


• Fairly straightforward
• Needs many TCP Connections (slow to open)


• Not secure
HTTPS


Making things secure
People can look into passing trucks!
Steal our emails / bank details / passwords.
@TomAnthonySEO
HTTPS uses a tunnel, over the road we built.
The tunnel is built by TLS (SSL).
@TomAnthonySEO
HTTPS requests are identical to HTTP
The trucks in the tunnel are still exactly the same.
@TomAnthonySEO
TCP builds the road, as before…
@TomAnthonySEO
@TomAnthonySEO
TCP builds the road, as before…
@TomAnthonySEO
Then TLS is used to secure the road…
@TomAnthonySEO
But tunnels are complex…
TLS takes not 1 round trip…
@TomAnthonySEO
But tunnels are complex…
… but 2 round trips.
@TomAnthonySEO
So for TCP + TLS to build an HTTPS connection…
Means 3 round trips.
@TomAnthonySEO
So for TCP + TLS to build an HTTPS connection…
Means 3 round trips.
@TomAnthonySEO
3 round trips are needed before we send an actual request.
So for TCP + TLS to build an HTTPS connection…
@TomAnthonySEO
Trucks and Steam Rollers have a maximum speed.
@TomAnthonySEO
The further away the server, the longer requests take.
A single webpage will load resources from many (sub) domains
@TomAnthonySEO
Javascript, CSS, Fonts and more will be loaded from other sites
Each sub-domain will need its own road(s)
@TomAnthonySEO
www.searchpilot.com
www.facebook.com
This means opening additional connections. More round trips.
@TomAnthonySEO
IKEA page: 146 requests / 17 subdomains = over 200 round trips!
HTTPS: More secure, but even slower!


HTTPS (HTTP/1.1)
@TomAnthonySEO
PROS
CONS
NOTES
HTTPS (HTTP/1.1)
@TomAnthonySEO
PROS
CONS
NOTES
• Identical to HTTP 1.1


• ‘Wrapped’ in TLS (SSL) tunnel
HTTPS (HTTP/1.1)
@TomAnthonySEO
PROS
CONS
NOTES
• Identical to HTTP 1.1


• ‘Wrapped’ in TLS (SSL) tunnel
• Encrypted connection protects privacy
HTTPS (HTTP/1.1)
@TomAnthonySEO
PROS
CONS
NOTES
• Identical to HTTP 1.1


• ‘Wrapped’ in TLS (SSL) tunnel
• Encrypted connection protects privacy


• 3-4 round trips for a single request!


• It is now even slower
2.
HTTP/2


Making things faster
More bandwidth doesn’t help!
@TomAnthonySEO
More bandwidth doesn’t help!
@TomAnthonySEO
Page load time vs bandwidth
@TomAnthonySEO
source: https://hpbn.co/primer-on-web-performance/
@TomAnthonySEO
source: https://hpbn.co/primer-on-web-performance/
Page load time vs latency
Building roads & tunnels is slow…
@TomAnthonySEO
…but HTTP/2 requires tunnels.
We need to eliminate round trips!
You can change how you build to reduce round trips
Site Speed
@TomAnthonySEO
Principles That Will

Transform Your Understanding
(& the ‘secret’ fourth site speed method)
@TomAnthonySEO
2 Improvements offered by HTTP/2
@TomAnthonySEO
Multiplexing Server Push
Earlier: Requests are queued
Trucks need to wait for a free road.
@TomAnthonySEO
HTTP/2: Allows multiple requests per connection
@TomAnthonySEO
Multiple trucks can share a road.


Less road & tunnel building = fewer round trips.
HTTP/1.1 - Waterfall graph shows blocked requests
@TomAnthonySEO
HTTP/1.1 - Multiple roads and tunnels need to be built
@TomAnthonySEO
HTTP/1.1 - Multiple roads and tunnels need to be built
@TomAnthonySEO
HTTP/2: No request blocking - all images immediately fetched
@TomAnthonySEO
HTTP/2: Traffic Jams
@TomAnthonySEO
Trucks can get stuck in traffic jams.


If TCP traffic is delayed or lost, traffic jams slow everything.
HTTP/2: Traffic Jams
@TomAnthonySEO
Particularly problematic on mobile connections


latency is higher, and ‘packet loss’ is higher
HTTP/2 Server Push
@TomAnthonySEO
HTTP/2 Server Push
@TomAnthonySEO
Browser sends a request for a webpage.
HTTP/2 Server Push
@TomAnthonySEO
Truck drives to server, like always.
HTTP/2 Server Push
@TomAnthonySEO
Server receives request for page,


but knows that you will need this font.
HTTP/2 Server Push
@TomAnthonySEO
Rather than wait for you to ask (round trip!),


the server instead just sends it right away.
HTTP/2 Server Push
Massive speed boost!


Perfect, right?
@TomAnthonySEO
HTTP/2 Server Push - Problem
@TomAnthonySEO
The server doesn’t know you need the font.


Maybe just loaded a page? Maybe it is cached from last week?
It tends to end up looking more like this…
@TomAnthonySEO
Server sends a pushed font with Page A
Page A
It tends to end up looking more like this…
@TomAnthonySEO
Server sends same pushed font again with Page B
Page B
It tends to end up looking more like this…
@TomAnthonySEO
…and page C
Page C
It tends to end up looking more like this…
@TomAnthonySEO
More and more font trucks…
It tends to end up looking more like this…
@TomAnthonySEO
More and more font trucks…
It tends to end up looking more like this…
@TomAnthonySEO
Typically servers ‘over push’ and send files that the browser
already had. It causes more harm than good.
🔥
🔥
🔥
🔥
🔥🔥
🔥
🔥
🔥
HTTP/2


Performance & Adoption.
HTTP/2 Performance
27% to 60% faster


on the top 25 websites
@TomAnthonySEO
🚀
source: https://www.chromium.org/spdy/spdy-whitepaper
HTTP/2 Adoption
@TomAnthonySEO
HTTP/2: Better, but still lots of


time preparing connections.


HTTP/2
@TomAnthonySEO
PROS
CONS
NOTES
HTTP/2
@TomAnthonySEO
PROS
CONS
NOTES
• Introduces Multiplexing & Server Push


• Always encrypted (always uses a tunnel)
HTTP/2
@TomAnthonySEO
PROS
CONS
NOTES
• Introduces Multiplexing & Server Push


• Always encrypted (always uses a tunnel)
• Multiplexing: Fewer round trips improves speed


• Don’t need to change the website to benefit
HTTP/2
@TomAnthonySEO
PROS
CONS
NOTES
• Introduces Multiplexing & Server Push


• Always encrypted (always uses a tunnel)
• Multiplexing: Fewer round trips improves speed


• Don’t need to change the website to benefit
• Can suffer from traffic jams


• Push is broken


• Still lots of round trips
HTTP/3


Going off-road…
Recap
Recap
🐛 HTTP/1.1 was slow and insecure
Recap
🐛
🐌
HTTP/1.1 was slow and insecure
HTTPS added security, but was slower
Recap
🐢
🐛
🐌
HTTP/1.1 was slow and insecure
HTTPS added security, but was slower
HTTP/2 is a lot faster, but could still be faster
Enter HTTP/3
In 2012, Google invented QUIC, that later became HTTP/3.
TCP connections were roads
@TomAnthonySEO
TLS/SSL was a tunnel
@TomAnthonySEO
HTTP was the trucks
@TomAnthonySEO
HTTP layers
@TomAnthonySEO
Traffic
Security
Delivery
HTTP layers
@TomAnthonySEO
These parts are
responsible for a
lot of round trips.
HTTP/3 merges these responsibilities
@TomAnthonySEO
?
HTTP/3 merges these responsibilities
@TomAnthonySEO
HTTP/3 introduces… armoured trucks!
Big strong tyres - mean
it can go off road
HTTP/3 introduces… armoured trucks!
Armoured design
makes it secure
without tunnels.
Browser opening a web page
@TomAnthonySEO
Browser opening a web page
@TomAnthonySEO
HTTP/3 can just immediately send a truck.


No roads. No tunnels.
Browser opening a web page
@TomAnthonySEO
Response comes back.
Browser opening a web page
@TomAnthonySEO
Trucks are secure,


so cannot be spied upon.
Earlier… HTTP/2: Traffic Jams
@TomAnthonySEO
Trucks can get stuck in traffic jams.


If TCP traffic is delayed or lost, traffic jams slow everything.
@TomAnthonySEO
See you later,


suckers!
No roads means no traffic jams.


Particular important for mobile users.
@TomAnthonySEO
Earlier… IKEA page: 146 requests / 17 subdomains
@TomAnthonySEO
Earlier… IKEA page: 146 requests / 17 subdomains
HTTPS: ~227 round trips
@TomAnthonySEO
Earlier… IKEA page: 146 requests / 17 subdomains
HTTPS: ~227 round trips
HTTP/2: ~197 round trips
🔻30
@TomAnthonySEO
Earlier… IKEA page: 146 requests / 17 subdomains
HTTPS: ~227 round trips
HTTP/2: ~197 round trips
HTTP/3: ~146 round trips
🔻30
🔻51
President’s Limo
President’s Limo - The Beast
• 13cm thick bullet proof glass


• Run flat tyres


• Night vision optics


• Tear gas cannon


• Personal oxygen supply


• Integrated pump action shotguns


• Rumoured rocket propelled grenades!


• Cost $1.5 million
Obama went on a diplomatic visit to Ireland…
Got stuck on the driveway at the Embassy
HTTP/3 - initial connection
Chrome sends both.


If the armoured car cannot get in, then finish the road.
Earlier…HTTP/2 Server Push
@TomAnthonySEO
Rather than wait for you to ask (round trip!),


the server instead just sends it right away.
HTTP/3 Server Push
@TomAnthonySEO
In HTTP/3 there are improved safeguards,


to try and prevent over pushing.
1
Push ID
HTTP/3 - Performance
CloudFlare study: 12.5% faster TTFB in tests
source: https://blog.cloudflare.com/http-3-vs-http-2/
Wrapping up
HTTP/3 - Headers are basically the same as HTTP/1.1
HTTP/3 200


content-type: text/html


<html>


<head>


<title>Ron’s Page</title>


</head>


<body>


You stay classy, San Diego!


</body>


</html>
Headers
Body
HTTP/3 - Response codes are the same still
200 404
301
Checking which protocol is used
Enable the protocol column in browser dev tools
CDNs
Enable the protocol column in browser dev tools
HTTP/3 Takeaways
HTTP/3 is a quick performance win.


Doesn’t require changing your site.
HTTP/3 is not a migration.


Same https:// links as before. Don’t panic.
HTTP/3 is secure by design.


Still need an SSL certificate for it.
HTTP/3 will fall back to HTTP/2


If HTTP/3 is not available, it will automatically use HTTP/2.
HTTP/3 can help Core Web Vitals


Delivering the pages faster will help your aggregated metrics.
* No cats were harmed in the making of this presentation.
HTTP/3
I would love some questions! Ask me here, or on Twitter! :)
@TomAnthonySEO
Danke! Grazie! Tack! Merci!


Thanks! Dankje! Dziękuję!

Weitere ähnliche Inhalte

Was ist angesagt?

Domain consolidation & SEO
Domain consolidation & SEODomain consolidation & SEO
Domain consolidation & SEODamien ROBERT
 
Make SEO Audits that Matter & Get Implemented for Success
Make SEO Audits that Matter & Get Implemented for SuccessMake SEO Audits that Matter & Get Implemented for Success
Make SEO Audits that Matter & Get Implemented for SuccessAleyda Solís
 
Faceted Navigation for SEO: Technical Tricks to Boost Your Visibility
Faceted Navigation for SEO: Technical Tricks to Boost Your VisibilityFaceted Navigation for SEO: Technical Tricks to Boost Your Visibility
Faceted Navigation for SEO: Technical Tricks to Boost Your VisibilityAllotment Digital Marketing
 
International SEO for E-Commerce Websites #SEJLive #SEJeSummit
International SEO for E-Commerce Websites #SEJLive #SEJeSummitInternational SEO for E-Commerce Websites #SEJLive #SEJeSummit
International SEO for E-Commerce Websites #SEJLive #SEJeSummitAleyda Solís
 
How to overcome the fear of taking time off.pptx
How to overcome the fear of taking time off.pptxHow to overcome the fear of taking time off.pptx
How to overcome the fear of taking time off.pptxQuibble
 
Mobile First SEO at #WCEU
Mobile First SEO at #WCEU Mobile First SEO at #WCEU
Mobile First SEO at #WCEU Aleyda Solís
 
Análisis de precios de tu competencia con Screaming Frog #SEOGirona
Análisis de precios de tu competencia con Screaming Frog #SEOGironaAnálisis de precios de tu competencia con Screaming Frog #SEOGirona
Análisis de precios de tu competencia con Screaming Frog #SEOGironaMJ Cachón Yáñez
 
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance FrameworkGoodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance FrameworkAleyda Solís
 
How To EAT Links.pptx
How To EAT Links.pptxHow To EAT Links.pptx
How To EAT Links.pptxDixon Jones
 
Un Puzzle de 4 piezas llamado SEO [#ECONGRESS19]
Un Puzzle de 4 piezas llamado SEO [#ECONGRESS19]Un Puzzle de 4 piezas llamado SEO [#ECONGRESS19]
Un Puzzle de 4 piezas llamado SEO [#ECONGRESS19]Luis M Villanueva
 
Corrie Jones BrightonSEO deck
Corrie Jones BrightonSEO deckCorrie Jones BrightonSEO deck
Corrie Jones BrightonSEO deckCorrie Jones
 
A Simple method to Create Content using NLP
A Simple method to Create Content using NLP A Simple method to Create Content using NLP
A Simple method to Create Content using NLP Sante J. Achille
 
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...BethBarnham1
 
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing ReportsSEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing ReportsSimon Lesser
 
Programmatic SEO: How to Dominate SEO Like TripAdvisor, Yelp and Zillow
Programmatic SEO: How to Dominate SEO Like TripAdvisor, Yelp and ZillowProgrammatic SEO: How to Dominate SEO Like TripAdvisor, Yelp and Zillow
Programmatic SEO: How to Dominate SEO Like TripAdvisor, Yelp and ZillowBernard Huang
 
Electronic payment systems - Presentation by IrfanAnsari.com
Electronic payment systems - Presentation by IrfanAnsari.comElectronic payment systems - Presentation by IrfanAnsari.com
Electronic payment systems - Presentation by IrfanAnsari.comLearnInUrdu.com & Ustaadjee.com
 
Paginaciones, el agujero negro de la indexación - Clinic Seo - Congreso Web 2019
Paginaciones, el agujero negro de la indexación - Clinic Seo - Congreso Web 2019Paginaciones, el agujero negro de la indexación - Clinic Seo - Congreso Web 2019
Paginaciones, el agujero negro de la indexación - Clinic Seo - Congreso Web 2019Iñaki Huerta (ikhuerta)
 
TECHNICAL SEO QA - SHINING A LIGHT ON INVISIBLE WORK (BrightonSEO April 2022)
TECHNICAL SEO QA - SHINING A LIGHT ON INVISIBLE WORK (BrightonSEO April 2022)TECHNICAL SEO QA - SHINING A LIGHT ON INVISIBLE WORK (BrightonSEO April 2022)
TECHNICAL SEO QA - SHINING A LIGHT ON INVISIBLE WORK (BrightonSEO April 2022)Gianna Brachetti-Truskawa 🐙
 

Was ist angesagt? (20)

Domain consolidation & SEO
Domain consolidation & SEODomain consolidation & SEO
Domain consolidation & SEO
 
Make SEO Audits that Matter & Get Implemented for Success
Make SEO Audits that Matter & Get Implemented for SuccessMake SEO Audits that Matter & Get Implemented for Success
Make SEO Audits that Matter & Get Implemented for Success
 
Faceted Navigation for SEO: Technical Tricks to Boost Your Visibility
Faceted Navigation for SEO: Technical Tricks to Boost Your VisibilityFaceted Navigation for SEO: Technical Tricks to Boost Your Visibility
Faceted Navigation for SEO: Technical Tricks to Boost Your Visibility
 
International SEO for E-Commerce Websites #SEJLive #SEJeSummit
International SEO for E-Commerce Websites #SEJLive #SEJeSummitInternational SEO for E-Commerce Websites #SEJLive #SEJeSummit
International SEO for E-Commerce Websites #SEJLive #SEJeSummit
 
How to overcome the fear of taking time off.pptx
How to overcome the fear of taking time off.pptxHow to overcome the fear of taking time off.pptx
How to overcome the fear of taking time off.pptx
 
Mobile First SEO at #WCEU
Mobile First SEO at #WCEU Mobile First SEO at #WCEU
Mobile First SEO at #WCEU
 
Análisis de precios de tu competencia con Screaming Frog #SEOGirona
Análisis de precios de tu competencia con Screaming Frog #SEOGironaAnálisis de precios de tu competencia con Screaming Frog #SEOGirona
Análisis de precios de tu competencia con Screaming Frog #SEOGirona
 
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance FrameworkGoodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
 
How To EAT Links.pptx
How To EAT Links.pptxHow To EAT Links.pptx
How To EAT Links.pptx
 
E-marketing
E-marketingE-marketing
E-marketing
 
Un Puzzle de 4 piezas llamado SEO [#ECONGRESS19]
Un Puzzle de 4 piezas llamado SEO [#ECONGRESS19]Un Puzzle de 4 piezas llamado SEO [#ECONGRESS19]
Un Puzzle de 4 piezas llamado SEO [#ECONGRESS19]
 
Corrie Jones BrightonSEO deck
Corrie Jones BrightonSEO deckCorrie Jones BrightonSEO deck
Corrie Jones BrightonSEO deck
 
A Simple method to Create Content using NLP
A Simple method to Create Content using NLP A Simple method to Create Content using NLP
A Simple method to Create Content using NLP
 
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
 
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing ReportsSEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
 
Programmatic SEO: How to Dominate SEO Like TripAdvisor, Yelp and Zillow
Programmatic SEO: How to Dominate SEO Like TripAdvisor, Yelp and ZillowProgrammatic SEO: How to Dominate SEO Like TripAdvisor, Yelp and Zillow
Programmatic SEO: How to Dominate SEO Like TripAdvisor, Yelp and Zillow
 
Electronic payment systems - Presentation by IrfanAnsari.com
Electronic payment systems - Presentation by IrfanAnsari.comElectronic payment systems - Presentation by IrfanAnsari.com
Electronic payment systems - Presentation by IrfanAnsari.com
 
Crypto wallets
Crypto walletsCrypto wallets
Crypto wallets
 
Paginaciones, el agujero negro de la indexación - Clinic Seo - Congreso Web 2019
Paginaciones, el agujero negro de la indexación - Clinic Seo - Congreso Web 2019Paginaciones, el agujero negro de la indexación - Clinic Seo - Congreso Web 2019
Paginaciones, el agujero negro de la indexación - Clinic Seo - Congreso Web 2019
 
TECHNICAL SEO QA - SHINING A LIGHT ON INVISIBLE WORK (BrightonSEO April 2022)
TECHNICAL SEO QA - SHINING A LIGHT ON INVISIBLE WORK (BrightonSEO April 2022)TECHNICAL SEO QA - SHINING A LIGHT ON INVISIBLE WORK (BrightonSEO April 2022)
TECHNICAL SEO QA - SHINING A LIGHT ON INVISIBLE WORK (BrightonSEO April 2022)
 

Ähnlich wie An introduction to HTTP/3 - with trucks!

An introduction to HTTP/2 for SEOs
An introduction to HTTP/2 for SEOsAn introduction to HTTP/2 for SEOs
An introduction to HTTP/2 for SEOsTom Anthony
 
HTTP Strict Transport Security (HSTS), English version
HTTP Strict Transport Security (HSTS), English versionHTTP Strict Transport Security (HSTS), English version
HTTP Strict Transport Security (HSTS), English versionMichal Špaček
 
From zero to almost rails in about a million slides...
From zero to almost rails in about a million slides...From zero to almost rails in about a million slides...
From zero to almost rails in about a million slides...david_e_worth
 
An introduction to HTTP/2 & Service Workers for SEOs
An introduction to HTTP/2 & Service Workers for SEOsAn introduction to HTTP/2 & Service Workers for SEOs
An introduction to HTTP/2 & Service Workers for SEOsTom Anthony
 
SearchLove San Diego 2018 | Tom Anthony | An Introduction to HTTP/2 & Service...
SearchLove San Diego 2018 | Tom Anthony | An Introduction to HTTP/2 & Service...SearchLove San Diego 2018 | Tom Anthony | An Introduction to HTTP/2 & Service...
SearchLove San Diego 2018 | Tom Anthony | An Introduction to HTTP/2 & Service...Distilled
 
Web Performance in the Age of HTTP/2 - FEDay Conference, Guangzhou, China 19/...
Web Performance in the Age of HTTP/2 - FEDay Conference, Guangzhou, China 19/...Web Performance in the Age of HTTP/2 - FEDay Conference, Guangzhou, China 19/...
Web Performance in the Age of HTTP/2 - FEDay Conference, Guangzhou, China 19/...Holger Bartel
 
How To Make Any Site Blazing Fast!!! Tom Pool - London SEO Meetup Jan'20
How To Make Any Site Blazing Fast!!! Tom Pool - London SEO Meetup Jan'20How To Make Any Site Blazing Fast!!! Tom Pool - London SEO Meetup Jan'20
How To Make Any Site Blazing Fast!!! Tom Pool - London SEO Meetup Jan'20Tom Pool
 
So that was HTTP/2, what's next?
So that was HTTP/2, what's next?So that was HTTP/2, what's next?
So that was HTTP/2, what's next?Daniel Stenberg
 
It's busness time - Open Transit Data for the ACT
It's busness time - Open Transit Data for the ACTIt's busness time - Open Transit Data for the ACT
It's busness time - Open Transit Data for the ACTmaxious
 
How to access torrent?
How to access torrent?How to access torrent?
How to access torrent?Proxies Rent
 
Taking a Quantum Leap with Html 5 WebSocket
Taking a Quantum Leap with Html 5 WebSocketTaking a Quantum Leap with Html 5 WebSocket
Taking a Quantum Leap with Html 5 WebSocketShahriar Hyder
 
Concepts for Operating a Web Site
Concepts for Operating a Web SiteConcepts for Operating a Web Site
Concepts for Operating a Web SiteCan Burak Çilingir
 
QCon NY 2014 - Evolving REST for an IoT World
QCon NY 2014 - Evolving REST for an IoT WorldQCon NY 2014 - Evolving REST for an IoT World
QCon NY 2014 - Evolving REST for an IoT WorldTodd Montgomery
 
Chapter 1 - Computer Networks and the Internet 2
Chapter 1 - Computer Networks and the Internet 2Chapter 1 - Computer Networks and the Internet 2
Chapter 1 - Computer Networks and the Internet 2Andy Juan Sarango Veliz
 

Ähnlich wie An introduction to HTTP/3 - with trucks! (20)

An introduction to HTTP/2 for SEOs
An introduction to HTTP/2 for SEOsAn introduction to HTTP/2 for SEOs
An introduction to HTTP/2 for SEOs
 
HTTP Strict Transport Security (HSTS), English version
HTTP Strict Transport Security (HSTS), English versionHTTP Strict Transport Security (HSTS), English version
HTTP Strict Transport Security (HSTS), English version
 
From zero to almost rails in about a million slides...
From zero to almost rails in about a million slides...From zero to almost rails in about a million slides...
From zero to almost rails in about a million slides...
 
An introduction to HTTP/2 & Service Workers for SEOs
An introduction to HTTP/2 & Service Workers for SEOsAn introduction to HTTP/2 & Service Workers for SEOs
An introduction to HTTP/2 & Service Workers for SEOs
 
SearchLove San Diego 2018 | Tom Anthony | An Introduction to HTTP/2 & Service...
SearchLove San Diego 2018 | Tom Anthony | An Introduction to HTTP/2 & Service...SearchLove San Diego 2018 | Tom Anthony | An Introduction to HTTP/2 & Service...
SearchLove San Diego 2018 | Tom Anthony | An Introduction to HTTP/2 & Service...
 
Web Performance in the Age of HTTP/2 - FEDay Conference, Guangzhou, China 19/...
Web Performance in the Age of HTTP/2 - FEDay Conference, Guangzhou, China 19/...Web Performance in the Age of HTTP/2 - FEDay Conference, Guangzhou, China 19/...
Web Performance in the Age of HTTP/2 - FEDay Conference, Guangzhou, China 19/...
 
How To Make Any Site Blazing Fast!!! Tom Pool - London SEO Meetup Jan'20
How To Make Any Site Blazing Fast!!! Tom Pool - London SEO Meetup Jan'20How To Make Any Site Blazing Fast!!! Tom Pool - London SEO Meetup Jan'20
How To Make Any Site Blazing Fast!!! Tom Pool - London SEO Meetup Jan'20
 
SPDY - or maybe HTTP2.0
SPDY - or maybe HTTP2.0SPDY - or maybe HTTP2.0
SPDY - or maybe HTTP2.0
 
So that was HTTP/2, what's next?
So that was HTTP/2, what's next?So that was HTTP/2, what's next?
So that was HTTP/2, what's next?
 
Web tcp ip
Web tcp ipWeb tcp ip
Web tcp ip
 
It's busness time - Open Transit Data for the ACT
It's busness time - Open Transit Data for the ACTIt's busness time - Open Transit Data for the ACT
It's busness time - Open Transit Data for the ACT
 
Http2
Http2Http2
Http2
 
Torrent
TorrentTorrent
Torrent
 
How to access torrent?
How to access torrent?How to access torrent?
How to access torrent?
 
Taking a Quantum Leap with Html 5 WebSocket
Taking a Quantum Leap with Html 5 WebSocketTaking a Quantum Leap with Html 5 WebSocket
Taking a Quantum Leap with Html 5 WebSocket
 
Concepts for Operating a Web Site
Concepts for Operating a Web SiteConcepts for Operating a Web Site
Concepts for Operating a Web Site
 
QCon NY 2014 - Evolving REST for an IoT World
QCon NY 2014 - Evolving REST for an IoT WorldQCon NY 2014 - Evolving REST for an IoT World
QCon NY 2014 - Evolving REST for an IoT World
 
HTTP/3
HTTP/3HTTP/3
HTTP/3
 
SPDY
SPDYSPDY
SPDY
 
Chapter 1 - Computer Networks and the Internet 2
Chapter 1 - Computer Networks and the Internet 2Chapter 1 - Computer Networks and the Internet 2
Chapter 1 - Computer Networks and the Internet 2
 

Mehr von Tom Anthony

Browser Changes That Will Impact SEO From 2019-2020
Browser Changes That Will Impact SEO From 2019-2020Browser Changes That Will Impact SEO From 2019-2020
Browser Changes That Will Impact SEO From 2019-2020Tom Anthony
 
SEO Tests on Big Sites & Small - What Etsy, Pinterest and Others Can Teach Us
SEO Tests on Big Sites & Small - What Etsy, Pinterest and Others Can Teach UsSEO Tests on Big Sites & Small - What Etsy, Pinterest and Others Can Teach Us
SEO Tests on Big Sites & Small - What Etsy, Pinterest and Others Can Teach UsTom Anthony
 
SEO by Hypothesis
SEO by HypothesisSEO by Hypothesis
SEO by HypothesisTom Anthony
 
3 New Techniques for the Modern Age of SEO
3 New Techniques for the Modern Age of SEO3 New Techniques for the Modern Age of SEO
3 New Techniques for the Modern Age of SEOTom Anthony
 
Next Era of SEO: A Guide to SEO Split-Testing
Next Era of SEO: A Guide to SEO Split-TestingNext Era of SEO: A Guide to SEO Split-Testing
Next Era of SEO: A Guide to SEO Split-TestingTom Anthony
 
Intelligent Personal Assistants & New Types of Search
Intelligent Personal Assistants & New Types of SearchIntelligent Personal Assistants & New Types of Search
Intelligent Personal Assistants & New Types of SearchTom Anthony
 
Intelligent Personal Assistants, Search & SEO
Intelligent Personal Assistants, Search & SEOIntelligent Personal Assistants, Search & SEO
Intelligent Personal Assistants, Search & SEOTom Anthony
 
Beacons and their Impact on Search & SEO
Beacons and their Impact on Search & SEOBeacons and their Impact on Search & SEO
Beacons and their Impact on Search & SEOTom Anthony
 
5 Emerging Trends in Search
5 Emerging Trends in Search5 Emerging Trends in Search
5 Emerging Trends in SearchTom Anthony
 
How to Spot a Bear - An Intro to Machine Learning for SEO
How to Spot a Bear - An Intro to Machine Learning for SEOHow to Spot a Bear - An Intro to Machine Learning for SEO
How to Spot a Bear - An Intro to Machine Learning for SEOTom Anthony
 
Technologies that will change the Future of Search
Technologies that will change the Future of SearchTechnologies that will change the Future of Search
Technologies that will change the Future of SearchTom Anthony
 
The Evolution of Search
The Evolution of SearchThe Evolution of Search
The Evolution of SearchTom Anthony
 
Post Penguin SEO
Post Penguin SEOPost Penguin SEO
Post Penguin SEOTom Anthony
 
Putting the love back into links
Putting the love back into linksPutting the love back into links
Putting the love back into linksTom Anthony
 

Mehr von Tom Anthony (15)

Browser Changes That Will Impact SEO From 2019-2020
Browser Changes That Will Impact SEO From 2019-2020Browser Changes That Will Impact SEO From 2019-2020
Browser Changes That Will Impact SEO From 2019-2020
 
SEO Tests on Big Sites & Small - What Etsy, Pinterest and Others Can Teach Us
SEO Tests on Big Sites & Small - What Etsy, Pinterest and Others Can Teach UsSEO Tests on Big Sites & Small - What Etsy, Pinterest and Others Can Teach Us
SEO Tests on Big Sites & Small - What Etsy, Pinterest and Others Can Teach Us
 
SEO by Hypothesis
SEO by HypothesisSEO by Hypothesis
SEO by Hypothesis
 
3 New Techniques for the Modern Age of SEO
3 New Techniques for the Modern Age of SEO3 New Techniques for the Modern Age of SEO
3 New Techniques for the Modern Age of SEO
 
Next Era of SEO: A Guide to SEO Split-Testing
Next Era of SEO: A Guide to SEO Split-TestingNext Era of SEO: A Guide to SEO Split-Testing
Next Era of SEO: A Guide to SEO Split-Testing
 
Intelligent Personal Assistants & New Types of Search
Intelligent Personal Assistants & New Types of SearchIntelligent Personal Assistants & New Types of Search
Intelligent Personal Assistants & New Types of Search
 
Intelligent Personal Assistants, Search & SEO
Intelligent Personal Assistants, Search & SEOIntelligent Personal Assistants, Search & SEO
Intelligent Personal Assistants, Search & SEO
 
Beacons and their Impact on Search & SEO
Beacons and their Impact on Search & SEOBeacons and their Impact on Search & SEO
Beacons and their Impact on Search & SEO
 
5 Emerging Trends in Search
5 Emerging Trends in Search5 Emerging Trends in Search
5 Emerging Trends in Search
 
How to Spot a Bear - An Intro to Machine Learning for SEO
How to Spot a Bear - An Intro to Machine Learning for SEOHow to Spot a Bear - An Intro to Machine Learning for SEO
How to Spot a Bear - An Intro to Machine Learning for SEO
 
Technologies that will change the Future of Search
Technologies that will change the Future of SearchTechnologies that will change the Future of Search
Technologies that will change the Future of Search
 
The Evolution of Search
The Evolution of SearchThe Evolution of Search
The Evolution of Search
 
Post Penguin SEO
Post Penguin SEOPost Penguin SEO
Post Penguin SEO
 
API? WTF!
API? WTF!API? WTF!
API? WTF!
 
Putting the love back into links
Putting the love back into linksPutting the love back into links
Putting the love back into links
 

Kürzlich hochgeladen

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 

Kürzlich hochgeladen (20)

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

An introduction to HTTP/3 - with trucks!