SlideShare a Scribd company logo
1 of 37
Download to read offline
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
WordPress Performance
Key learnings from hosting 1000+
WordPress sites
Thomas Audunhus
Country Manager @ Servebolt
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Novice Expert
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
And why is speed important?
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Because the users of the internet says so!
… and Google
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Rendering and browser code
HTML, CSS & .js
Server-side code
PHP
Database
MySQL
What affects load time?
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Time to first byte (TTFB)
Time from the server receives a request,
until the first byte is delivered.
Recommended: <600ms
WordPress Performance by Thomas Audunhus
What do most developers do to speed up WordPress?
1. Minification of code (grunt, gulp etc)
2. Install a plugin with “performance” or “speed” in the title
3. Set up caching everywhere
4. Adjust the code again, and again, to achieve a Pagespeed insights score of 100/100
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Whaaaaat?
Not even Google?
WordPress Performance by Thomas Audunhus
Implementing the suggestions should improve the
relative performance of the page.
“
- Google
We use a variety of sources to determine the speed of a
site relative to other sites.
“
- Google
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
What makes WordPress slow?
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Bloated themes
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
“There is a plugin for that”
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
With Autoptimize Without Autoptimize
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Running more code != Better performance
Doing more never results in faster finish
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
0ms
1250ms
2500ms
3750ms
5000ms
Them
e:2017
Them
e:Jupiter
Dem
o
content
Plugin:VC
Plugin:Autoptim
ize
Added
100
postsPlugin:W
oocom
m
ercePlugin:W
ordfence
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
So, what to do?
…and what not to do
WordPress Performance by Thomas Audunhus
Be lean and mean with plugins
1. Plugins you don’t really need shouldn’t be installed.
2. Ensure that new plugins don’t mess with your time-to-first-byte (TTFB)
3. Kill page-builders like Visual Composer if you can
4. Kill security plugins (they are a security hazard anyway)
5. Kill slider plugins
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
I’m focused on performance, so I use caching on all sites“
Cool, the site is faster now! But.. it’s not Varnish fast.“
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Using page caching for
performance
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Caching
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Caching
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Caching
Load balancer
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Caching == A scaling tool
If you use caching for performance, you will not be able to use it for scaling.
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
PHP ERRORS
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Keep .htaccess clean
Don’t setup redirects in htaccess.
# BEGIN WordPress

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteRule ^index.php$ – [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

</IfModule>

# END WordPress
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Hardcoding
Nooooo… hardcoding is bad! Or?
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
MyISAM -> InnoDB
Stop using MyISAM as DB engine, and switch to InnoDB or Aria
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Large _options table?
ALTER TABLE wp_options ADD INDEX autoload_idx (`autoload`);
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
Stay up to date on technology
WordPress Performance by Thomas Audunhus
New technology
1. Compiles PHP into byte code

2. Caches the compiled byte code
2-3x faster
OPcache
WordPress Performance by Thomas Audunhus
4 connections
HTTP2
New technology
WordPress Performance by Thomas Audunhus
HTTP2
1 connection
New technology
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
~40% faster
New technology
WordPress Performance by Thomas Audunhus
The takeaway
• Check if your changes to the site had an impact on ttfb

• Make the error log your todo list

• Don’t rely on caching for performance

• Move to PHP 7

• Remember that performance is a continuous task
Thank you!
WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup

More Related Content

What's hot

Manage WordPress From the Command Line with WP-CLI
Manage WordPress From the Command Line with WP-CLIManage WordPress From the Command Line with WP-CLI
Manage WordPress From the Command Line with WP-CLIShawn Hooper
 
WP-CLI Presentation from WordCamp NYC 2015
WP-CLI Presentation from WordCamp NYC 2015WP-CLI Presentation from WordCamp NYC 2015
WP-CLI Presentation from WordCamp NYC 2015Shawn Hooper
 
Self hosted WordPress
Self hosted WordPressSelf hosted WordPress
Self hosted WordPressCarel Bekker
 
WordPress Migrations 101 - WordCamp Orlando
WordPress Migrations 101 - WordCamp OrlandoWordPress Migrations 101 - WordCamp Orlando
WordPress Migrations 101 - WordCamp OrlandoSiteGround.com
 
Cloud Automation with Opscode Chef
Cloud Automation with Opscode ChefCloud Automation with Opscode Chef
Cloud Automation with Opscode ChefSri Ram
 
Moving from WordPress.com to WordPress.org
Moving from WordPress.com to WordPress.orgMoving from WordPress.com to WordPress.org
Moving from WordPress.com to WordPress.orgRuth Maude
 
WordPress on Amazon ec2
WordPress on Amazon ec2WordPress on Amazon ec2
WordPress on Amazon ec2belsien
 
Ship WordPress Projects Like a Boss
Ship WordPress Projects Like a BossShip WordPress Projects Like a Boss
Ship WordPress Projects Like a BossSiteGround.com
 
Wordpress vs Google Blogger/ Wampserver
Wordpress vs Google Blogger/ WampserverWordpress vs Google Blogger/ Wampserver
Wordpress vs Google Blogger/ WampserverKshitij Wagle
 
3 tips to make your Wordpress site faster
3 tips to make your Wordpress site faster3 tips to make your Wordpress site faster
3 tips to make your Wordpress site fasterJonathan Alford
 
WordPress At Scale. WordCamp Dhaka 2019
WordPress At Scale. WordCamp Dhaka 2019WordPress At Scale. WordCamp Dhaka 2019
WordPress At Scale. WordCamp Dhaka 2019Anam Ahmed
 
Self-Hosted Wordpress Installation Tutorial
Self-Hosted Wordpress Installation TutorialSelf-Hosted Wordpress Installation Tutorial
Self-Hosted Wordpress Installation TutorialBen Reed
 
High Performance Website with LAMPP technology
High Performance Website with LAMPP technologyHigh Performance Website with LAMPP technology
High Performance Website with LAMPP technologyPierre Jean Duvivier
 
Using WordPress as a local Intranet Hub, Milwaukee WordCamp 2013 | Samer Sultan
Using WordPress as a local Intranet Hub, Milwaukee WordCamp 2013 | Samer SultanUsing WordPress as a local Intranet Hub, Milwaukee WordCamp 2013 | Samer Sultan
Using WordPress as a local Intranet Hub, Milwaukee WordCamp 2013 | Samer Sultansamersultan1
 
Migrating from WordPress.com
Migrating from WordPress.comMigrating from WordPress.com
Migrating from WordPress.comAndrew Epperson
 
NJ Videographers Association - Build an amazing website - WordPress
NJ Videographers Association - Build an amazing website - WordPressNJ Videographers Association - Build an amazing website - WordPress
NJ Videographers Association - Build an amazing website - WordPressGabriela Levit
 

What's hot (20)

Manage WordPress From the Command Line with WP-CLI
Manage WordPress From the Command Line with WP-CLIManage WordPress From the Command Line with WP-CLI
Manage WordPress From the Command Line with WP-CLI
 
WP-CLI Presentation from WordCamp NYC 2015
WP-CLI Presentation from WordCamp NYC 2015WP-CLI Presentation from WordCamp NYC 2015
WP-CLI Presentation from WordCamp NYC 2015
 
Self hosted WordPress
Self hosted WordPressSelf hosted WordPress
Self hosted WordPress
 
WordPress Migrations 101 - WordCamp Orlando
WordPress Migrations 101 - WordCamp OrlandoWordPress Migrations 101 - WordCamp Orlando
WordPress Migrations 101 - WordCamp Orlando
 
Cloud Automation with Opscode Chef
Cloud Automation with Opscode ChefCloud Automation with Opscode Chef
Cloud Automation with Opscode Chef
 
Moving from WordPress.com to WordPress.org
Moving from WordPress.com to WordPress.orgMoving from WordPress.com to WordPress.org
Moving from WordPress.com to WordPress.org
 
WordPress on Amazon ec2
WordPress on Amazon ec2WordPress on Amazon ec2
WordPress on Amazon ec2
 
Ship WordPress Projects Like a Boss
Ship WordPress Projects Like a BossShip WordPress Projects Like a Boss
Ship WordPress Projects Like a Boss
 
Wordpress vs Google Blogger/ Wampserver
Wordpress vs Google Blogger/ WampserverWordpress vs Google Blogger/ Wampserver
Wordpress vs Google Blogger/ Wampserver
 
How to install wordpress
How to install wordpressHow to install wordpress
How to install wordpress
 
3 tips to make your Wordpress site faster
3 tips to make your Wordpress site faster3 tips to make your Wordpress site faster
3 tips to make your Wordpress site faster
 
WordPress At Scale. WordCamp Dhaka 2019
WordPress At Scale. WordCamp Dhaka 2019WordPress At Scale. WordCamp Dhaka 2019
WordPress At Scale. WordCamp Dhaka 2019
 
Self-Hosted Wordpress Installation Tutorial
Self-Hosted Wordpress Installation TutorialSelf-Hosted Wordpress Installation Tutorial
Self-Hosted Wordpress Installation Tutorial
 
High Performance Website with LAMPP technology
High Performance Website with LAMPP technologyHigh Performance Website with LAMPP technology
High Performance Website with LAMPP technology
 
Gearman Add To Your Project
Gearman Add To Your ProjectGearman Add To Your Project
Gearman Add To Your Project
 
Using WordPress as a local Intranet Hub, Milwaukee WordCamp 2013 | Samer Sultan
Using WordPress as a local Intranet Hub, Milwaukee WordCamp 2013 | Samer SultanUsing WordPress as a local Intranet Hub, Milwaukee WordCamp 2013 | Samer Sultan
Using WordPress as a local Intranet Hub, Milwaukee WordCamp 2013 | Samer Sultan
 
Weebly login
Weebly loginWeebly login
Weebly login
 
Migrating from WordPress.com
Migrating from WordPress.comMigrating from WordPress.com
Migrating from WordPress.com
 
NJ Videographers Association - Build an amazing website - WordPress
NJ Videographers Association - Build an amazing website - WordPressNJ Videographers Association - Build an amazing website - WordPress
NJ Videographers Association - Build an amazing website - WordPress
 
Wordpress installation
Wordpress installationWordpress installation
Wordpress installation
 

Similar to Key learnings from hosting 1000+ WordPress sites

Wordpress Beyond A Blog Word Camp Toronto08
Wordpress Beyond A Blog Word Camp Toronto08Wordpress Beyond A Blog Word Camp Toronto08
Wordpress Beyond A Blog Word Camp Toronto08Jamie Oastler
 
AMIMOTO: WordPress + Amazon Web Services MANILA
AMIMOTO: WordPress + Amazon Web Services MANILAAMIMOTO: WordPress + Amazon Web Services MANILA
AMIMOTO: WordPress + Amazon Web Services MANILAKel
 
WP-CLI For The Win
WP-CLI For The WinWP-CLI For The Win
WP-CLI For The WinMicah Wood
 
WordCamp RI 2015 - Beginner WordPress Workshop
WordCamp RI 2015 - Beginner WordPress Workshop   WordCamp RI 2015 - Beginner WordPress Workshop
WordCamp RI 2015 - Beginner WordPress Workshop Ella J Designs
 
AMIMOTO: WordPress + Amazon Web Services University of the Philippines Los Baños
AMIMOTO: WordPress + Amazon Web Services University of the Philippines Los BañosAMIMOTO: WordPress + Amazon Web Services University of the Philippines Los Baños
AMIMOTO: WordPress + Amazon Web Services University of the Philippines Los BañosKel
 
Mastering WordPress Vol.1
Mastering WordPress Vol.1Mastering WordPress Vol.1
Mastering WordPress Vol.1Wataru OKAMOTO
 
London Etil has worked on a number of projects such as the Ruban Restore, KVM...
London Etil has worked on a number of projects such as the Ruban Restore, KVM...London Etil has worked on a number of projects such as the Ruban Restore, KVM...
London Etil has worked on a number of projects such as the Ruban Restore, KVM...LondonAtil1
 
PHP on Windows and on Azure
PHP on Windows and on AzurePHP on Windows and on Azure
PHP on Windows and on AzureMaarten Balliauw
 
[Bristol WordPress] Supercharging WordPress Development
[Bristol WordPress] Supercharging WordPress Development[Bristol WordPress] Supercharging WordPress Development
[Bristol WordPress] Supercharging WordPress DevelopmentAdam Tomat
 
Command Line WordPress with WP-CLI
Command Line WordPress with WP-CLICommand Line WordPress with WP-CLI
Command Line WordPress with WP-CLIJames Collins
 
WordPress Continuous Maintenance
WordPress Continuous MaintenanceWordPress Continuous Maintenance
WordPress Continuous MaintenanceOlaf Lindström
 
Command Line WordPress with WP-CLI - WordPress Perth User Group
Command Line WordPress with WP-CLI - WordPress Perth User GroupCommand Line WordPress with WP-CLI - WordPress Perth User Group
Command Line WordPress with WP-CLI - WordPress Perth User GroupJames Collins
 
Just Another Word Press Weblog But More Cloudy
Just Another Word Press Weblog   But More CloudyJust Another Word Press Weblog   But More Cloudy
Just Another Word Press Weblog But More CloudyMaarten Balliauw
 
PuppetConf 2016: Best Practices for Puppet in the Cloud – Randall Hunt, Amazo...
PuppetConf 2016: Best Practices for Puppet in the Cloud – Randall Hunt, Amazo...PuppetConf 2016: Best Practices for Puppet in the Cloud – Randall Hunt, Amazo...
PuppetConf 2016: Best Practices for Puppet in the Cloud – Randall Hunt, Amazo...Puppet
 
GoDaddy Guide to cPanel and WordPress
GoDaddy Guide to cPanel and WordPressGoDaddy Guide to cPanel and WordPress
GoDaddy Guide to cPanel and WordPressGoDaddy
 
Wordpress as a CMS
Wordpress as a CMSWordpress as a CMS
Wordpress as a CMSmarkirby
 

Similar to Key learnings from hosting 1000+ WordPress sites (20)

Wordpress Beyond A Blog Word Camp Toronto08
Wordpress Beyond A Blog Word Camp Toronto08Wordpress Beyond A Blog Word Camp Toronto08
Wordpress Beyond A Blog Word Camp Toronto08
 
WordPress in 90 minutes
WordPress in 90 minutesWordPress in 90 minutes
WordPress in 90 minutes
 
AMIMOTO: WordPress + Amazon Web Services MANILA
AMIMOTO: WordPress + Amazon Web Services MANILAAMIMOTO: WordPress + Amazon Web Services MANILA
AMIMOTO: WordPress + Amazon Web Services MANILA
 
Caching 101
Caching 101Caching 101
Caching 101
 
WP-CLI For The Win
WP-CLI For The WinWP-CLI For The Win
WP-CLI For The Win
 
Optimizing wp
Optimizing wpOptimizing wp
Optimizing wp
 
WordCamp RI 2015 - Beginner WordPress Workshop
WordCamp RI 2015 - Beginner WordPress Workshop   WordCamp RI 2015 - Beginner WordPress Workshop
WordCamp RI 2015 - Beginner WordPress Workshop
 
AMIMOTO: WordPress + Amazon Web Services University of the Philippines Los Baños
AMIMOTO: WordPress + Amazon Web Services University of the Philippines Los BañosAMIMOTO: WordPress + Amazon Web Services University of the Philippines Los Baños
AMIMOTO: WordPress + Amazon Web Services University of the Philippines Los Baños
 
Mastering WordPress Vol.1
Mastering WordPress Vol.1Mastering WordPress Vol.1
Mastering WordPress Vol.1
 
London Etil has worked on a number of projects such as the Ruban Restore, KVM...
London Etil has worked on a number of projects such as the Ruban Restore, KVM...London Etil has worked on a number of projects such as the Ruban Restore, KVM...
London Etil has worked on a number of projects such as the Ruban Restore, KVM...
 
PHP on Windows and on Azure
PHP on Windows and on AzurePHP on Windows and on Azure
PHP on Windows and on Azure
 
[Bristol WordPress] Supercharging WordPress Development
[Bristol WordPress] Supercharging WordPress Development[Bristol WordPress] Supercharging WordPress Development
[Bristol WordPress] Supercharging WordPress Development
 
Command Line WordPress with WP-CLI
Command Line WordPress with WP-CLICommand Line WordPress with WP-CLI
Command Line WordPress with WP-CLI
 
WordPress Continuous Maintenance
WordPress Continuous MaintenanceWordPress Continuous Maintenance
WordPress Continuous Maintenance
 
Command Line WordPress with WP-CLI - WordPress Perth User Group
Command Line WordPress with WP-CLI - WordPress Perth User GroupCommand Line WordPress with WP-CLI - WordPress Perth User Group
Command Line WordPress with WP-CLI - WordPress Perth User Group
 
Just Another Word Press Weblog But More Cloudy
Just Another Word Press Weblog   But More CloudyJust Another Word Press Weblog   But More Cloudy
Just Another Word Press Weblog But More Cloudy
 
Asp introduction
Asp introductionAsp introduction
Asp introduction
 
PuppetConf 2016: Best Practices for Puppet in the Cloud – Randall Hunt, Amazo...
PuppetConf 2016: Best Practices for Puppet in the Cloud – Randall Hunt, Amazo...PuppetConf 2016: Best Practices for Puppet in the Cloud – Randall Hunt, Amazo...
PuppetConf 2016: Best Practices for Puppet in the Cloud – Randall Hunt, Amazo...
 
GoDaddy Guide to cPanel and WordPress
GoDaddy Guide to cPanel and WordPressGoDaddy Guide to cPanel and WordPress
GoDaddy Guide to cPanel and WordPress
 
Wordpress as a CMS
Wordpress as a CMSWordpress as a CMS
Wordpress as a CMS
 

Recently uploaded

Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMartaLoveguard
 
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...akbard9823
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsThierry TROUIN ☁
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一Fs
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)Christopher H Felton
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
The Intriguing World of CDR Analysis by Police: What You Need to Know.pdf
The Intriguing World of CDR Analysis by Police: What You Need to Know.pdfThe Intriguing World of CDR Analysis by Police: What You Need to Know.pdf
The Intriguing World of CDR Analysis by Police: What You Need to Know.pdfMilind Agarwal
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
Denver Web Design brochure for public viewing
Denver Web Design brochure for public viewingDenver Web Design brochure for public viewing
Denver Web Design brochure for public viewingbigorange77
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhimiss dipika
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 

Recently uploaded (20)

Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptx
 
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with Flows
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
The Intriguing World of CDR Analysis by Police: What You Need to Know.pdf
The Intriguing World of CDR Analysis by Police: What You Need to Know.pdfThe Intriguing World of CDR Analysis by Police: What You Need to Know.pdf
The Intriguing World of CDR Analysis by Police: What You Need to Know.pdf
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
Denver Web Design brochure for public viewing
Denver Web Design brochure for public viewingDenver Web Design brochure for public viewing
Denver Web Design brochure for public viewing
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhi
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 

Key learnings from hosting 1000+ WordPress sites

  • 1. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup WordPress Performance Key learnings from hosting 1000+ WordPress sites Thomas Audunhus Country Manager @ Servebolt
  • 2. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Novice Expert
  • 3. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup And why is speed important?
  • 4. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Because the users of the internet says so! … and Google
  • 5. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
  • 6. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Rendering and browser code HTML, CSS & .js Server-side code PHP Database MySQL What affects load time?
  • 7. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Time to first byte (TTFB) Time from the server receives a request, until the first byte is delivered. Recommended: <600ms
  • 8. WordPress Performance by Thomas Audunhus What do most developers do to speed up WordPress? 1. Minification of code (grunt, gulp etc) 2. Install a plugin with “performance” or “speed” in the title 3. Set up caching everywhere 4. Adjust the code again, and again, to achieve a Pagespeed insights score of 100/100
  • 9. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Whaaaaat? Not even Google?
  • 10. WordPress Performance by Thomas Audunhus Implementing the suggestions should improve the relative performance of the page. “ - Google We use a variety of sources to determine the speed of a site relative to other sites. “ - Google
  • 11. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup What makes WordPress slow?
  • 12. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Bloated themes
  • 13. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup “There is a plugin for that”
  • 14. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup With Autoptimize Without Autoptimize
  • 15. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Running more code != Better performance Doing more never results in faster finish
  • 16. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup 0ms 1250ms 2500ms 3750ms 5000ms Them e:2017 Them e:Jupiter Dem o content Plugin:VC Plugin:Autoptim ize Added 100 postsPlugin:W oocom m ercePlugin:W ordfence
  • 17. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup So, what to do? …and what not to do
  • 18. WordPress Performance by Thomas Audunhus Be lean and mean with plugins 1. Plugins you don’t really need shouldn’t be installed. 2. Ensure that new plugins don’t mess with your time-to-first-byte (TTFB) 3. Kill page-builders like Visual Composer if you can 4. Kill security plugins (they are a security hazard anyway) 5. Kill slider plugins
  • 19. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup I’m focused on performance, so I use caching on all sites“ Cool, the site is faster now! But.. it’s not Varnish fast.“
  • 20. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Using page caching for performance
  • 21. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup
  • 22. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Caching
  • 23. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Caching
  • 24. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Caching Load balancer
  • 25. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Caching == A scaling tool If you use caching for performance, you will not be able to use it for scaling.
  • 26. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup PHP ERRORS
  • 27. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Keep .htaccess clean Don’t setup redirects in htaccess. # BEGIN WordPress
 <IfModule mod_rewrite.c>
 RewriteEngine On
 RewriteBase /
 RewriteRule ^index.php$ – [L]
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule . /index.php [L]
 </IfModule>
 # END WordPress
  • 28. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Hardcoding Nooooo… hardcoding is bad! Or?
  • 29. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup MyISAM -> InnoDB Stop using MyISAM as DB engine, and switch to InnoDB or Aria
  • 30. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Large _options table? ALTER TABLE wp_options ADD INDEX autoload_idx (`autoload`);
  • 31. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup Stay up to date on technology
  • 32. WordPress Performance by Thomas Audunhus New technology 1. Compiles PHP into byte code 2. Caches the compiled byte code 2-3x faster OPcache
  • 33. WordPress Performance by Thomas Audunhus 4 connections HTTP2 New technology
  • 34. WordPress Performance by Thomas Audunhus HTTP2 1 connection New technology
  • 35. WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup ~40% faster New technology
  • 36. WordPress Performance by Thomas Audunhus The takeaway • Check if your changes to the site had an impact on ttfb • Make the error log your todo list • Don’t rely on caching for performance • Move to PHP 7 • Remember that performance is a continuous task
  • 37. Thank you! WordPress Performance by Thomas Audunhus @ Oslo WordPress Meetup