SlideShare a Scribd company logo
1 of 46
Download to read offline
WORDPRESS โ€จ
PERFORMANCE TWEAKING
BRECHT RYCKAERT
โ€œWordPress Expertโ€ @ combell.com
I blog at brechtryckaert.com
Author โ€œWordPress Security 101โ€
Proud dad of Fleur!
BRECHT RYCKAERT
LET ME TELL YOU A STORY ABOUT
A CRICKET AND AN ANTโ€ฆ
IN MANY WAYSโ€ฆ WEโ€™RE THE
CRICKET WHEN LAUNCHING A NEW
WORDPRESS SITEโ€ฆ
MORE RAM & CPU โ€จ
=/= A MUCH FASTER SITE
MISCONCEPTION:
PUT IN THE WORK AND YOU
WILL GET YOU A FAST SITE!
BE THE ANTโ€ฆ
ANALYZE THE SITE
STEP ONE
โ€œYESโ€ฆ THIS SEEMS TO BE AN ACUTE CASE OF โ€จ
SLUGGISHNESS IN YOUR WORDPRESSโ€
ANALYZE THE SITE
MY ANALYSIS TOOLS OF CHOICE
โ–ธ Firebug in Mozilla Firefox (donโ€™t use it in Chrome)
โ–ธ gtmetrix.com (combines Google Pagespeed, Yahoo YSlow,
โ€ฆ)
ANALYZE THE SITE
IDEAL VALUES
โ–ธ 30 to 50 elements -> concurrent browser connections
โ–ธ 0 to 1.5 MB in size
โ–ธ Less is more
ANALYZE THE SITE
WAYS TO IMPROVE LOADING SPEED
โ–ธ Domain sharding
โ–ธ CSS-sprites (http://css-tricks.com/css-sprites/)
OPTIMIZE WORDPRESS
STEP TWO
OPTIMIZE WORDPRESS
SLOW INITIAL GET?
โ–ธ Usually points towards too many queries
โ–ธ Fix: limit or reduce the number of queries
OPTIMIZE WORDPRESS
SLOW INITIAL GET?
โ–ธ Usually points towards too many queries
โ–ธ Fix: limit or reduce the number of queries
Reduce your plugins to the bare minimum!
OPTIMIZE WORDPRESS
OPTIMIZE IMAGES
โ–ธ wp smush it
โ–ธ Reduce the size of images (new and already added
images)
OPTIMIZE WORDPRESS
CACHING PLUGINS
โ–ธ W3 Total Cache
โ–ธ WP Super Cache
โ–ธ WP Rocket
โ–ธ WP Faster Cache
โ–ธ โ€ฆ
OPTIMIZE WORDPRESS
MY PLUGIN OF CHOICE
โ€œYOU KNOW THATโ€™S A
SECURITY PLUGIN, RIGHT?โ€
OPTIMIZE WORDPRESS
MY PLUGIN OF CHOICE
โ–ธ Proof by Mattias Geniar:โ€จ
https://ma.ttias.be/benchmarking-the-performance-of-
wordfence-a-wordpress-plugin/
SERVER SIDE TWEAKS
STEP THREE
SERVER SIDE TWEAKS
GZIP
โ–ธ Compresses the data sent from server to browser
โ–ธ add to your .htaccess:โ€จ
โ€จ
AddOutputFilterByType DEFLATE text/plainโ€จ
AddOutputFilterByType DEFLATE text/htmlโ€จ
AddOutputFilterByType DEFLATE text/xmlโ€จ
AddOutputFilterByType DEFLATE text/cssโ€จ
AddOutputFilterByType DEFLATE application/xmlโ€จ
AddOutputFilterByType DEFLATE application/xhtml+xmlโ€จ
AddOutputFilterByType DEFLATE application/rss+xmlโ€จ
AddOutputFilterByType DEFLATE application/javascriptโ€จ
AddOutputFilterByType DEFLATE application/x-javascript
SERVER SIDE TWEAKS
DISABLE ENTITY TAGS
โ–ธ Mechanism to verify if browsercache items correspond to
current server version
โ–ธ disable by adding this to .htaccess:โ€จ
โ€จ
Header unset ETagโ€จ
FileETag None
SERVER SIDE TWEAKS
MOD_EXPIRES
โ–ธ Allows us to take control of the browsercache without a caching plugin
โ–ธ add to your .htaccess:โ€จ
โ€จ
# BEGIN Expire headersโ€จ
<IfModule mod_expires.c>โ€จ
ExpiresActive Onโ€จ
ExpiresDefault "access plus 5 seconds"โ€จ
ExpiresByType image/x-icon "access plus 2500000 seconds"โ€จ
ExpiresByType image/jpeg "access plus 2500000 seconds"โ€จ
ExpiresByType image/png "access plus 2500000 seconds"โ€จ
ExpiresByType image/gif "access plus 2500000 seconds"โ€จ
ExpiresByType application/x-shockwave-๏ฌ‚ash "access plus 2500000 seconds"โ€จ
ExpiresByType text/css "access plus 600000 seconds"โ€จ
ExpiresByType text/javascript "access plus 200000 seconds"โ€จ
ExpiresByType application/javascript "access plus 200000 seconds"โ€จ
ExpiresByType application/x-javascript "access plus 200000 seconds"โ€จ
ExpiresByType text/html "access plus 600 seconds"โ€จ
ExpiresByType application/xhtml+xml "access plus 600 seconds"โ€จ
</IfModule>
SERVER SIDE TWEAKS
MOD_EXPIRES
โ–ธ add to your .htaccess (second part):โ€จ
โ€จ
# BEGIN Cache-Control Headersโ€จ
<IfModule mod_headers.c>โ€จ
<๏ฌlesMatch ".(ico|jpe?g|png|gif|swf)$">โ€จ
Header set Cache-Control "public"โ€จ
</๏ฌlesMatch>โ€จ
<๏ฌlesMatch ".(css)$">โ€จ
Header set Cache-Control "public"โ€จ
</๏ฌlesMatch>โ€จ
<๏ฌlesMatch ".(js)$">โ€จ
Header set Cache-Control "private"โ€จ
</๏ฌlesMatch>โ€จ
<๏ฌlesMatch ".(x?html?|php)$">โ€จ
Header set Cache-Control "private, must-revalidate"โ€จ
</๏ฌlesMatch>โ€จ
</IfModule>โ€จ
# END Cache-Control Headers
CACHING STRATEGIES
STEP FOUR
CACHING STRATEGIES
CONTENT DELIVERY NETWORK
โ–ธ Cloud๏ฌ‚are
โ–ธ โ€ฆ
CACHING STRATEGIES
CACHING TECHNIQUES
โ–ธ Memcached
โ–ธ Redis
โ–ธ Varnish
CACHING STRATEGIES
CACHING TECHNIQUES
โ–ธ Memcached
โ–ธ Redis
โ–ธ Varnish
OBJECT CACHE
REVERSE PROXY
SO WHAT TECHNIQUE DO YOU CHOOSE?
CACHING STRATEGIES
IDEAL SETUP
VARNISH REDIS
CACHING STRATEGIES
IDEAL SETUP
VARNISH REDIS
CACHING STRATEGIES
IDEAL SETUP
VARNISH REDIS
FRONT-END
CACHING STRATEGIES
IDEAL SETUP
VARNISH REDIS
FRONT-END QUERIES
WHY REDIS AND NOT MEMCACHED?
CACHING STRATEGIES
WHY I PREFER REDIS
โ–ธ Values up to 512MB in size (memcached limited to 1MB
per key)
โ–ธ Supports much more programming languages
QUESTIONS?
THANK YOU!
Iโ€™LL TWEET THE LINK TO THE SLIDES ON
@BRECHTRYCKAERT

More Related Content

What's hot

10 things every developer should know about their database to run word press ...
10 things every developer should know about their database to run word press ...10 things every developer should know about their database to run word press ...
10 things every developer should know about their database to run word press ...Otto Kekรคlรคinen
ย 
Ryan Duff 2015 WordCamp US HTTP API
Ryan Duff 2015 WordCamp US HTTP APIRyan Duff 2015 WordCamp US HTTP API
Ryan Duff 2015 WordCamp US HTTP APIryanduff
ย 
Install WordPress Blogging Software with EasyPHP
Install WordPress Blogging Software with EasyPHPInstall WordPress Blogging Software with EasyPHP
Install WordPress Blogging Software with EasyPHPRupesh Kumar
ย 
Speed up Your Joomla Site for Ultimate Performance
Speed up Your Joomla Site for Ultimate PerformanceSpeed up Your Joomla Site for Ultimate Performance
Speed up Your Joomla Site for Ultimate PerformanceJoomlaDay Australia
ย 
I Can Haz More Performanz?
I Can Haz More Performanz?I Can Haz More Performanz?
I Can Haz More Performanz?Andy Melichar
ย 
WordCamp SF 2011: Debugging in WordPress
WordCamp SF 2011: Debugging in WordPressWordCamp SF 2011: Debugging in WordPress
WordCamp SF 2011: Debugging in WordPressandrewnacin
ย 
Getting started with WordPress development
Getting started with WordPress developmentGetting started with WordPress development
Getting started with WordPress developmentSteve Mortiboy
ย 
Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014
Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014
Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014ryanduff
ย 
Extending Your WordPress Toolbelt with WP-CLI
Extending Your WordPress Toolbelt with WP-CLIExtending Your WordPress Toolbelt with WP-CLI
Extending Your WordPress Toolbelt with WP-CLIryanduff
ย 
Making Magic with WP-CLI
Making Magic with WP-CLIMaking Magic with WP-CLI
Making Magic with WP-CLIryanduff
ย 
Mastering WordPress Vol.1
Mastering WordPress Vol.1Mastering WordPress Vol.1
Mastering WordPress Vol.1Wataru OKAMOTO
ย 
Install Word Press with xampp
Install Word Press with xamppInstall Word Press with xampp
Install Word Press with xamppMehdi Sharifirad
ย 
WP-CLI: WordCamp Nashville 2016
WP-CLI: WordCamp Nashville 2016WP-CLI: WordCamp Nashville 2016
WP-CLI: WordCamp Nashville 2016Terell Moore
ย 
Improving WordPress performance (xdebug and profiling)
Improving WordPress performance (xdebug and profiling)Improving WordPress performance (xdebug and profiling)
Improving WordPress performance (xdebug and profiling)Otto Kekรคlรคinen
ย 
How I Learned to Stop Worrying and Backup WordPress
How I Learned to Stop Worrying and Backup WordPressHow I Learned to Stop Worrying and Backup WordPress
How I Learned to Stop Worrying and Backup WordPressChris Jean
ย 
Managing Multisite: Lessons from a Large Network
Managing Multisite: Lessons from a Large NetworkManaging Multisite: Lessons from a Large Network
Managing Multisite: Lessons from a Large NetworkWilliam Earnhardt
ย 
Wordpress File Upload
Wordpress File UploadWordpress File Upload
Wordpress File Uploadwaqas muhammad
ย 
Coding with jetpack
Coding with jetpackCoding with jetpack
Coding with jetpackRich Collier
ย 
The 5 most common reasons for a slow WordPress site and how to fix them โ€“ ext...
The 5 most common reasons for a slow WordPress site and how to fix them โ€“ ext...The 5 most common reasons for a slow WordPress site and how to fix them โ€“ ext...
The 5 most common reasons for a slow WordPress site and how to fix them โ€“ ext...Otto Kekรคlรคinen
ย 
Responsible [digital] Home Ownership
Responsible [digital] Home OwnershipResponsible [digital] Home Ownership
Responsible [digital] Home OwnershipDenise (Dee) Teal
ย 

What's hot (20)

10 things every developer should know about their database to run word press ...
10 things every developer should know about their database to run word press ...10 things every developer should know about their database to run word press ...
10 things every developer should know about their database to run word press ...
ย 
Ryan Duff 2015 WordCamp US HTTP API
Ryan Duff 2015 WordCamp US HTTP APIRyan Duff 2015 WordCamp US HTTP API
Ryan Duff 2015 WordCamp US HTTP API
ย 
Install WordPress Blogging Software with EasyPHP
Install WordPress Blogging Software with EasyPHPInstall WordPress Blogging Software with EasyPHP
Install WordPress Blogging Software with EasyPHP
ย 
Speed up Your Joomla Site for Ultimate Performance
Speed up Your Joomla Site for Ultimate PerformanceSpeed up Your Joomla Site for Ultimate Performance
Speed up Your Joomla Site for Ultimate Performance
ย 
I Can Haz More Performanz?
I Can Haz More Performanz?I Can Haz More Performanz?
I Can Haz More Performanz?
ย 
WordCamp SF 2011: Debugging in WordPress
WordCamp SF 2011: Debugging in WordPressWordCamp SF 2011: Debugging in WordPress
WordCamp SF 2011: Debugging in WordPress
ย 
Getting started with WordPress development
Getting started with WordPress developmentGetting started with WordPress development
Getting started with WordPress development
ย 
Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014
Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014
Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014
ย 
Extending Your WordPress Toolbelt with WP-CLI
Extending Your WordPress Toolbelt with WP-CLIExtending Your WordPress Toolbelt with WP-CLI
Extending Your WordPress Toolbelt with WP-CLI
ย 
Making Magic with WP-CLI
Making Magic with WP-CLIMaking Magic with WP-CLI
Making Magic with WP-CLI
ย 
Mastering WordPress Vol.1
Mastering WordPress Vol.1Mastering WordPress Vol.1
Mastering WordPress Vol.1
ย 
Install Word Press with xampp
Install Word Press with xamppInstall Word Press with xampp
Install Word Press with xampp
ย 
WP-CLI: WordCamp Nashville 2016
WP-CLI: WordCamp Nashville 2016WP-CLI: WordCamp Nashville 2016
WP-CLI: WordCamp Nashville 2016
ย 
Improving WordPress performance (xdebug and profiling)
Improving WordPress performance (xdebug and profiling)Improving WordPress performance (xdebug and profiling)
Improving WordPress performance (xdebug and profiling)
ย 
How I Learned to Stop Worrying and Backup WordPress
How I Learned to Stop Worrying and Backup WordPressHow I Learned to Stop Worrying and Backup WordPress
How I Learned to Stop Worrying and Backup WordPress
ย 
Managing Multisite: Lessons from a Large Network
Managing Multisite: Lessons from a Large NetworkManaging Multisite: Lessons from a Large Network
Managing Multisite: Lessons from a Large Network
ย 
Wordpress File Upload
Wordpress File UploadWordpress File Upload
Wordpress File Upload
ย 
Coding with jetpack
Coding with jetpackCoding with jetpack
Coding with jetpack
ย 
The 5 most common reasons for a slow WordPress site and how to fix them โ€“ ext...
The 5 most common reasons for a slow WordPress site and how to fix them โ€“ ext...The 5 most common reasons for a slow WordPress site and how to fix them โ€“ ext...
The 5 most common reasons for a slow WordPress site and how to fix them โ€“ ext...
ย 
Responsible [digital] Home Ownership
Responsible [digital] Home OwnershipResponsible [digital] Home Ownership
Responsible [digital] Home Ownership
ย 

Viewers also liked

Content Creation Regimen - WordCamp Hamilton 2016
Content Creation Regimen - WordCamp Hamilton 2016Content Creation Regimen - WordCamp Hamilton 2016
Content Creation Regimen - WordCamp Hamilton 2016Andy McIlwain
ย 
WordPress mit React โ€“ Mehr als eine Zweckehe?!
WordPress mit React โ€“ Mehr als eine Zweckehe?!WordPress mit React โ€“ Mehr als eine Zweckehe?!
WordPress mit React โ€“ Mehr als eine Zweckehe?!Paul Vincent Beigang
ย 
Flexing Your WordPress Themes
Flexing Your WordPress ThemesFlexing Your WordPress Themes
Flexing Your WordPress ThemesTim Blodgett
ย 
Not One and Done - Repurposing Your Content
Not One and Done - Repurposing Your ContentNot One and Done - Repurposing Your Content
Not One and Done - Repurposing Your ContentSharon A. Dawson, DTM
ย 
My Contributor Story
My Contributor StoryMy Contributor Story
My Contributor StoryMarko Heijnen
ย 
Pressnomics 2015 - Managing Client Expectations
Pressnomics 2015 - Managing Client ExpectationsPressnomics 2015 - Managing Client Expectations
Pressnomics 2015 - Managing Client ExpectationsSteve Zehngut
ย 
2013-08-10 WordCamp Russia - Aleksandr Stankevic
2013-08-10 WordCamp Russia - Aleksandr Stankevic2013-08-10 WordCamp Russia - Aleksandr Stankevic
2013-08-10 WordCamp Russia - Aleksandr Stankevicsysmonk
ย 
Diabeล‚ tkwi w szczegรณล‚ach...
Diabeล‚ tkwi w szczegรณล‚ach...Diabeล‚ tkwi w szczegรณล‚ach...
Diabeล‚ tkwi w szczegรณล‚ach...Ewa Karaszkiewicz
ย 
Learning java script and wordpress rest api by tom hermans wordcamp netherl...
Learning java script and wordpress rest api by tom hermans   wordcamp netherl...Learning java script and wordpress rest api by tom hermans   wordcamp netherl...
Learning java script and wordpress rest api by tom hermans wordcamp netherl...Tom Hermans
ย 
Do you really- need a 2kg pocket knife-
Do you  really- need  a 2kg pocket knife-Do you  really- need  a 2kg pocket knife-
Do you really- need a 2kg pocket knife-Kate Newbill
ย 
WordPress & Front-end performance
WordPress & Front-end performanceWordPress & Front-end performance
WordPress & Front-end performanceMichael Mizner
ย 
Managing Clients without Going Crazy
Managing Clients without Going CrazyManaging Clients without Going Crazy
Managing Clients without Going CrazyJohn Eckman
ย 
WooCommerce: An E-Commerce Solution for Wordpress
WooCommerce: An E-Commerce Solution for WordpressWooCommerce: An E-Commerce Solution for Wordpress
WooCommerce: An E-Commerce Solution for WordpressDigamber Pradhan
ย 
Develop and Deploy Outside the Repo
Develop and Deploy Outside the RepoDevelop and Deploy Outside the Repo
Develop and Deploy Outside the Repoafragen
ย 
VersionPress - WordPress + Git
VersionPress - WordPress + GitVersionPress - WordPress + Git
VersionPress - WordPress + Gitfrankstaude
ย 
Using the Editor the Proper Way - WordCamp Toronto 2015
Using the Editor the Proper Way - WordCamp Toronto 2015Using the Editor the Proper Way - WordCamp Toronto 2015
Using the Editor the Proper Way - WordCamp Toronto 2015sethta
ย 
WordCamp Montreal 2015: Combining Custom Post Types, Fields, and Meta Boxes t...
WordCamp Montreal 2015: Combining Custom Post Types, Fields, and Meta Boxes t...WordCamp Montreal 2015: Combining Custom Post Types, Fields, and Meta Boxes t...
WordCamp Montreal 2015: Combining Custom Post Types, Fields, and Meta Boxes t...allilevine
ย 
Word press gets responsive 4x3
Word press gets responsive 4x3Word press gets responsive 4x3
Word press gets responsive 4x3Edmund Turbin
ย 
Project Management or how to herd cats
Project Management or how to herd catsProject Management or how to herd cats
Project Management or how to herd catsBecky Davis
ย 

Viewers also liked (20)

Content Creation Regimen - WordCamp Hamilton 2016
Content Creation Regimen - WordCamp Hamilton 2016Content Creation Regimen - WordCamp Hamilton 2016
Content Creation Regimen - WordCamp Hamilton 2016
ย 
WordPress mit React โ€“ Mehr als eine Zweckehe?!
WordPress mit React โ€“ Mehr als eine Zweckehe?!WordPress mit React โ€“ Mehr als eine Zweckehe?!
WordPress mit React โ€“ Mehr als eine Zweckehe?!
ย 
Flexing Your WordPress Themes
Flexing Your WordPress ThemesFlexing Your WordPress Themes
Flexing Your WordPress Themes
ย 
Not One and Done - Repurposing Your Content
Not One and Done - Repurposing Your ContentNot One and Done - Repurposing Your Content
Not One and Done - Repurposing Your Content
ย 
My Contributor Story
My Contributor StoryMy Contributor Story
My Contributor Story
ย 
Pressnomics 2015 - Managing Client Expectations
Pressnomics 2015 - Managing Client ExpectationsPressnomics 2015 - Managing Client Expectations
Pressnomics 2015 - Managing Client Expectations
ย 
2013-08-10 WordCamp Russia - Aleksandr Stankevic
2013-08-10 WordCamp Russia - Aleksandr Stankevic2013-08-10 WordCamp Russia - Aleksandr Stankevic
2013-08-10 WordCamp Russia - Aleksandr Stankevic
ย 
Diabeล‚ tkwi w szczegรณล‚ach...
Diabeล‚ tkwi w szczegรณล‚ach...Diabeล‚ tkwi w szczegรณล‚ach...
Diabeล‚ tkwi w szczegรณล‚ach...
ย 
Learning java script and wordpress rest api by tom hermans wordcamp netherl...
Learning java script and wordpress rest api by tom hermans   wordcamp netherl...Learning java script and wordpress rest api by tom hermans   wordcamp netherl...
Learning java script and wordpress rest api by tom hermans wordcamp netherl...
ย 
Do you really- need a 2kg pocket knife-
Do you  really- need  a 2kg pocket knife-Do you  really- need  a 2kg pocket knife-
Do you really- need a 2kg pocket knife-
ย 
WordPress & Front-end performance
WordPress & Front-end performanceWordPress & Front-end performance
WordPress & Front-end performance
ย 
Managing Clients without Going Crazy
Managing Clients without Going CrazyManaging Clients without Going Crazy
Managing Clients without Going Crazy
ย 
WooCommerce: An E-Commerce Solution for Wordpress
WooCommerce: An E-Commerce Solution for WordpressWooCommerce: An E-Commerce Solution for Wordpress
WooCommerce: An E-Commerce Solution for Wordpress
ย 
CSS na steroidima (SASS)
CSS na steroidima (SASS)CSS na steroidima (SASS)
CSS na steroidima (SASS)
ย 
Develop and Deploy Outside the Repo
Develop and Deploy Outside the RepoDevelop and Deploy Outside the Repo
Develop and Deploy Outside the Repo
ย 
VersionPress - WordPress + Git
VersionPress - WordPress + GitVersionPress - WordPress + Git
VersionPress - WordPress + Git
ย 
Using the Editor the Proper Way - WordCamp Toronto 2015
Using the Editor the Proper Way - WordCamp Toronto 2015Using the Editor the Proper Way - WordCamp Toronto 2015
Using the Editor the Proper Way - WordCamp Toronto 2015
ย 
WordCamp Montreal 2015: Combining Custom Post Types, Fields, and Meta Boxes t...
WordCamp Montreal 2015: Combining Custom Post Types, Fields, and Meta Boxes t...WordCamp Montreal 2015: Combining Custom Post Types, Fields, and Meta Boxes t...
WordCamp Montreal 2015: Combining Custom Post Types, Fields, and Meta Boxes t...
ย 
Word press gets responsive 4x3
Word press gets responsive 4x3Word press gets responsive 4x3
Word press gets responsive 4x3
ย 
Project Management or how to herd cats
Project Management or how to herd catsProject Management or how to herd cats
Project Management or how to herd cats
ย 

Similar to WordPress Performance optimization

WordPress Performantie Optimalisatie
WordPress Performantie OptimalisatieWordPress Performantie Optimalisatie
WordPress Performantie OptimalisatieBrecht Ryckaert
ย 
Guide 6 - Tapping Into Your Website Configuration File.pdf
Guide 6 - Tapping Into Your Website Configuration File.pdfGuide 6 - Tapping Into Your Website Configuration File.pdf
Guide 6 - Tapping Into Your Website Configuration File.pdfpersuebusiness
ย 
Dc kyiv2010 jun_08
Dc kyiv2010 jun_08Dc kyiv2010 jun_08
Dc kyiv2010 jun_08Andrii Podanenko
ย 
Drupal Deployment Troubles and Problems
Drupal Deployment Troubles and ProblemsDrupal Deployment Troubles and Problems
Drupal Deployment Troubles and ProblemsAndrii Lundiak
ย 
WordPress At Scale. WordCamp Dhaka 2019
WordPress At Scale. WordCamp Dhaka 2019WordPress At Scale. WordCamp Dhaka 2019
WordPress At Scale. WordCamp Dhaka 2019Anam Ahmed
ย 
[CB16] 80ๆ™‚้–“ใงWebใ‚’ไธ€ๅ‘จ:ใ‚ฏใƒญใƒ ใƒŸใ‚ฆใƒ ใ‚ชใƒผใƒˆใƒกใƒผใ‚ทใƒงใƒณใซใ‚ˆใ‚‹ใ‚นใ‚ฑใƒผใƒฉใƒ–ใƒซใชใƒ•ใ‚ฃใƒณใ‚ฌใƒผใƒ—ใƒชใƒณใƒˆ by Isaac Dawson
[CB16] 80ๆ™‚้–“ใงWebใ‚’ไธ€ๅ‘จ:ใ‚ฏใƒญใƒ ใƒŸใ‚ฆใƒ ใ‚ชใƒผใƒˆใƒกใƒผใ‚ทใƒงใƒณใซใ‚ˆใ‚‹ใ‚นใ‚ฑใƒผใƒฉใƒ–ใƒซใชใƒ•ใ‚ฃใƒณใ‚ฌใƒผใƒ—ใƒชใƒณใƒˆ by Isaac Dawson[CB16] 80ๆ™‚้–“ใงWebใ‚’ไธ€ๅ‘จ:ใ‚ฏใƒญใƒ ใƒŸใ‚ฆใƒ ใ‚ชใƒผใƒˆใƒกใƒผใ‚ทใƒงใƒณใซใ‚ˆใ‚‹ใ‚นใ‚ฑใƒผใƒฉใƒ–ใƒซใชใƒ•ใ‚ฃใƒณใ‚ฌใƒผใƒ—ใƒชใƒณใƒˆ by Isaac Dawson
[CB16] 80ๆ™‚้–“ใงWebใ‚’ไธ€ๅ‘จ:ใ‚ฏใƒญใƒ ใƒŸใ‚ฆใƒ ใ‚ชใƒผใƒˆใƒกใƒผใ‚ทใƒงใƒณใซใ‚ˆใ‚‹ใ‚นใ‚ฑใƒผใƒฉใƒ–ใƒซใชใƒ•ใ‚ฃใƒณใ‚ฌใƒผใƒ—ใƒชใƒณใƒˆ by Isaac DawsonCODE BLUE
ย 
Website Security
Website SecurityWebsite Security
Website SecurityCarlos Z
ย 
Website Security
Website SecurityWebsite Security
Website SecurityMODxpo
ย 
Crud tutorial en
Crud tutorial enCrud tutorial en
Crud tutorial enforkgrown
ย 
Harder, Better, Faster, Stronger
Harder, Better, Faster, StrongerHarder, Better, Faster, Stronger
Harder, Better, Faster, StrongerDavid Engel
ย 
Leverage HTTP to deliver cacheable websites - Codemotion Rome 2018
Leverage HTTP to deliver cacheable websites - Codemotion Rome 2018Leverage HTTP to deliver cacheable websites - Codemotion Rome 2018
Leverage HTTP to deliver cacheable websites - Codemotion Rome 2018Thijs Feryn
ย 
Leverage HTTP to deliver cacheable websites - Thijs Feryn - Codemotion Rome 2018
Leverage HTTP to deliver cacheable websites - Thijs Feryn - Codemotion Rome 2018Leverage HTTP to deliver cacheable websites - Thijs Feryn - Codemotion Rome 2018
Leverage HTTP to deliver cacheable websites - Thijs Feryn - Codemotion Rome 2018Codemotion
ย 
Wordpress Security & Hardening Steps
Wordpress Security & Hardening StepsWordpress Security & Hardening Steps
Wordpress Security & Hardening StepsPlasterdog Web Design
ย 
Web Browsers And Other Mistakes
Web Browsers And Other MistakesWeb Browsers And Other Mistakes
Web Browsers And Other Mistakesguest2821a2
ย 
Client Side Optimization
Client Side OptimizationClient Side Optimization
Client Side OptimizationPatrick Huesler
ย 
Word press sites maintenanace
Word press sites maintenanaceWord press sites maintenanace
Word press sites maintenanaceMichelle Castillo
ย 
Optimize wordpress
Optimize wordpressOptimize wordpress
Optimize wordpressDavid Parsons
ย 
Intro to advanced web development
Intro to advanced web developmentIntro to advanced web development
Intro to advanced web developmentStevie T
ย 
How to Redirect HTTP to HTTPS in htaccess.pdf
How to Redirect HTTP to HTTPS in htaccess.pdfHow to Redirect HTTP to HTTPS in htaccess.pdf
How to Redirect HTTP to HTTPS in htaccess.pdfHost It Smart
ย 

Similar to WordPress Performance optimization (20)

WordPress Performantie Optimalisatie
WordPress Performantie OptimalisatieWordPress Performantie Optimalisatie
WordPress Performantie Optimalisatie
ย 
Guide 6 - Tapping Into Your Website Configuration File.pdf
Guide 6 - Tapping Into Your Website Configuration File.pdfGuide 6 - Tapping Into Your Website Configuration File.pdf
Guide 6 - Tapping Into Your Website Configuration File.pdf
ย 
Dc kyiv2010 jun_08
Dc kyiv2010 jun_08Dc kyiv2010 jun_08
Dc kyiv2010 jun_08
ย 
Drupal Deployment Troubles and Problems
Drupal Deployment Troubles and ProblemsDrupal Deployment Troubles and Problems
Drupal Deployment Troubles and Problems
ย 
WordPress At Scale. WordCamp Dhaka 2019
WordPress At Scale. WordCamp Dhaka 2019WordPress At Scale. WordCamp Dhaka 2019
WordPress At Scale. WordCamp Dhaka 2019
ย 
[CB16] 80ๆ™‚้–“ใงWebใ‚’ไธ€ๅ‘จ:ใ‚ฏใƒญใƒ ใƒŸใ‚ฆใƒ ใ‚ชใƒผใƒˆใƒกใƒผใ‚ทใƒงใƒณใซใ‚ˆใ‚‹ใ‚นใ‚ฑใƒผใƒฉใƒ–ใƒซใชใƒ•ใ‚ฃใƒณใ‚ฌใƒผใƒ—ใƒชใƒณใƒˆ by Isaac Dawson
[CB16] 80ๆ™‚้–“ใงWebใ‚’ไธ€ๅ‘จ:ใ‚ฏใƒญใƒ ใƒŸใ‚ฆใƒ ใ‚ชใƒผใƒˆใƒกใƒผใ‚ทใƒงใƒณใซใ‚ˆใ‚‹ใ‚นใ‚ฑใƒผใƒฉใƒ–ใƒซใชใƒ•ใ‚ฃใƒณใ‚ฌใƒผใƒ—ใƒชใƒณใƒˆ by Isaac Dawson[CB16] 80ๆ™‚้–“ใงWebใ‚’ไธ€ๅ‘จ:ใ‚ฏใƒญใƒ ใƒŸใ‚ฆใƒ ใ‚ชใƒผใƒˆใƒกใƒผใ‚ทใƒงใƒณใซใ‚ˆใ‚‹ใ‚นใ‚ฑใƒผใƒฉใƒ–ใƒซใชใƒ•ใ‚ฃใƒณใ‚ฌใƒผใƒ—ใƒชใƒณใƒˆ by Isaac Dawson
[CB16] 80ๆ™‚้–“ใงWebใ‚’ไธ€ๅ‘จ:ใ‚ฏใƒญใƒ ใƒŸใ‚ฆใƒ ใ‚ชใƒผใƒˆใƒกใƒผใ‚ทใƒงใƒณใซใ‚ˆใ‚‹ใ‚นใ‚ฑใƒผใƒฉใƒ–ใƒซใชใƒ•ใ‚ฃใƒณใ‚ฌใƒผใƒ—ใƒชใƒณใƒˆ by Isaac Dawson
ย 
Website Security
Website SecurityWebsite Security
Website Security
ย 
Website Security
Website SecurityWebsite Security
Website Security
ย 
Crud tutorial en
Crud tutorial enCrud tutorial en
Crud tutorial en
ย 
Harder, Better, Faster, Stronger
Harder, Better, Faster, StrongerHarder, Better, Faster, Stronger
Harder, Better, Faster, Stronger
ย 
Leverage HTTP to deliver cacheable websites - Codemotion Rome 2018
Leverage HTTP to deliver cacheable websites - Codemotion Rome 2018Leverage HTTP to deliver cacheable websites - Codemotion Rome 2018
Leverage HTTP to deliver cacheable websites - Codemotion Rome 2018
ย 
Leverage HTTP to deliver cacheable websites - Thijs Feryn - Codemotion Rome 2018
Leverage HTTP to deliver cacheable websites - Thijs Feryn - Codemotion Rome 2018Leverage HTTP to deliver cacheable websites - Thijs Feryn - Codemotion Rome 2018
Leverage HTTP to deliver cacheable websites - Thijs Feryn - Codemotion Rome 2018
ย 
Wordpress Security & Hardening Steps
Wordpress Security & Hardening StepsWordpress Security & Hardening Steps
Wordpress Security & Hardening Steps
ย 
Web Browsers And Other Mistakes
Web Browsers And Other MistakesWeb Browsers And Other Mistakes
Web Browsers And Other Mistakes
ย 
Client Side Optimization
Client Side OptimizationClient Side Optimization
Client Side Optimization
ย 
Word press sites maintenanace
Word press sites maintenanaceWord press sites maintenanace
Word press sites maintenanace
ย 
Optimize wordpress
Optimize wordpressOptimize wordpress
Optimize wordpress
ย 
Intro to advanced web development
Intro to advanced web developmentIntro to advanced web development
Intro to advanced web development
ย 
How to Redirect HTTP to HTTPS in htaccess.pdf
How to Redirect HTTP to HTTPS in htaccess.pdfHow to Redirect HTTP to HTTPS in htaccess.pdf
How to Redirect HTTP to HTTPS in htaccess.pdf
ย 
sfsa
sfsasfsa
sfsa
ย 

More from Brecht Ryckaert

Using WordPress as a Static Site Generator
Using WordPress as a Static Site GeneratorUsing WordPress as a Static Site Generator
Using WordPress as a Static Site GeneratorBrecht Ryckaert
ย 
The Anatomy Of A Hack - WordCamp Sofia 2018
The Anatomy Of A Hack - WordCamp Sofia 2018The Anatomy Of A Hack - WordCamp Sofia 2018
The Anatomy Of A Hack - WordCamp Sofia 2018Brecht Ryckaert
ย 
Scaling WordPress On A Small Budget
Scaling WordPress On A Small BudgetScaling WordPress On A Small Budget
Scaling WordPress On A Small BudgetBrecht Ryckaert
ย 
WordPress Meetup Ieper - 15/03/2018 - WordPress Security Best Practices
WordPress Meetup Ieper - 15/03/2018 - WordPress Security Best PracticesWordPress Meetup Ieper - 15/03/2018 - WordPress Security Best Practices
WordPress Meetup Ieper - 15/03/2018 - WordPress Security Best PracticesBrecht Ryckaert
ย 
WordCamp Antwerp - 3/3/2018 - Debugging WordPress by Brecht Ryckaert
WordCamp Antwerp - 3/3/2018 - Debugging WordPress by Brecht RyckaertWordCamp Antwerp - 3/3/2018 - Debugging WordPress by Brecht Ryckaert
WordCamp Antwerp - 3/3/2018 - Debugging WordPress by Brecht RyckaertBrecht Ryckaert
ย 
Debugging WordPress
Debugging WordPressDebugging WordPress
Debugging WordPressBrecht Ryckaert
ย 
WordPress Security - A Top Down Approach
WordPress Security - A Top Down ApproachWordPress Security - A Top Down Approach
WordPress Security - A Top Down ApproachBrecht Ryckaert
ย 
WordPress Security - Battening down the hatches
WordPress Security - Battening down the hatchesWordPress Security - Battening down the hatches
WordPress Security - Battening down the hatchesBrecht Ryckaert
ย 
Speeding up WordPress
Speeding up WordPressSpeeding up WordPress
Speeding up WordPressBrecht Ryckaert
ย 
WordPress Security
WordPress SecurityWordPress Security
WordPress SecurityBrecht Ryckaert
ย 
De valkuilen bij het migreren of publiceren van je WordPress website
De valkuilen bij het migreren of publiceren van je WordPress websiteDe valkuilen bij het migreren of publiceren van je WordPress website
De valkuilen bij het migreren of publiceren van je WordPress websiteBrecht Ryckaert
ย 
Combell Academy - Exchange 2010
Combell Academy - Exchange 2010Combell Academy - Exchange 2010
Combell Academy - Exchange 2010Brecht Ryckaert
ย 
Presentatie Ebook
Presentatie EbookPresentatie Ebook
Presentatie EbookBrecht Ryckaert
ย 

More from Brecht Ryckaert (13)

Using WordPress as a Static Site Generator
Using WordPress as a Static Site GeneratorUsing WordPress as a Static Site Generator
Using WordPress as a Static Site Generator
ย 
The Anatomy Of A Hack - WordCamp Sofia 2018
The Anatomy Of A Hack - WordCamp Sofia 2018The Anatomy Of A Hack - WordCamp Sofia 2018
The Anatomy Of A Hack - WordCamp Sofia 2018
ย 
Scaling WordPress On A Small Budget
Scaling WordPress On A Small BudgetScaling WordPress On A Small Budget
Scaling WordPress On A Small Budget
ย 
WordPress Meetup Ieper - 15/03/2018 - WordPress Security Best Practices
WordPress Meetup Ieper - 15/03/2018 - WordPress Security Best PracticesWordPress Meetup Ieper - 15/03/2018 - WordPress Security Best Practices
WordPress Meetup Ieper - 15/03/2018 - WordPress Security Best Practices
ย 
WordCamp Antwerp - 3/3/2018 - Debugging WordPress by Brecht Ryckaert
WordCamp Antwerp - 3/3/2018 - Debugging WordPress by Brecht RyckaertWordCamp Antwerp - 3/3/2018 - Debugging WordPress by Brecht Ryckaert
WordCamp Antwerp - 3/3/2018 - Debugging WordPress by Brecht Ryckaert
ย 
Debugging WordPress
Debugging WordPressDebugging WordPress
Debugging WordPress
ย 
WordPress Security - A Top Down Approach
WordPress Security - A Top Down ApproachWordPress Security - A Top Down Approach
WordPress Security - A Top Down Approach
ย 
WordPress Security - Battening down the hatches
WordPress Security - Battening down the hatchesWordPress Security - Battening down the hatches
WordPress Security - Battening down the hatches
ย 
Speeding up WordPress
Speeding up WordPressSpeeding up WordPress
Speeding up WordPress
ย 
WordPress Security
WordPress SecurityWordPress Security
WordPress Security
ย 
De valkuilen bij het migreren of publiceren van je WordPress website
De valkuilen bij het migreren of publiceren van je WordPress websiteDe valkuilen bij het migreren of publiceren van je WordPress website
De valkuilen bij het migreren of publiceren van je WordPress website
ย 
Combell Academy - Exchange 2010
Combell Academy - Exchange 2010Combell Academy - Exchange 2010
Combell Academy - Exchange 2010
ย 
Presentatie Ebook
Presentatie EbookPresentatie Ebook
Presentatie Ebook
ย 

Recently uploaded

(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...Escorts Call Girls
ย 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...roncy bisnoi
ย 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"growthgrids
ย 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...SUHANI PANDEY
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
ย 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC
ย 
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLLucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLimonikaupta
ย 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdfMatthew Sinclair
ย 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...SUHANI PANDEY
ย 
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...SUHANI PANDEY
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
ย 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceEscorts Call Girls
ย 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
ย 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
ย 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...tanu pandey
ย 
( Pune ) VIP Pimpri Chinchwad Call Girls ๐ŸŽ—๏ธ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls ๐ŸŽ—๏ธ 9352988975 Sizzling | Escorts | G...( Pune ) VIP Pimpri Chinchwad Call Girls ๐ŸŽ—๏ธ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls ๐ŸŽ—๏ธ 9352988975 Sizzling | Escorts | G...nilamkumrai
ย 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...tanu pandey
ย 

Recently uploaded (20)

(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
ย 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
ย 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
ย 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
ย 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
ย 
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLLucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
ย 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
ย 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
ย 
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
ย 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
ย 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
ย 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
ย 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
ย 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
ย 
( Pune ) VIP Pimpri Chinchwad Call Girls ๐ŸŽ—๏ธ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls ๐ŸŽ—๏ธ 9352988975 Sizzling | Escorts | G...( Pune ) VIP Pimpri Chinchwad Call Girls ๐ŸŽ—๏ธ 9352988975 Sizzling | Escorts | G...
( Pune ) VIP Pimpri Chinchwad Call Girls ๐ŸŽ—๏ธ 9352988975 Sizzling | Escorts | G...
ย 
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐ŸฅตLow Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
ย 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
ย 

WordPress Performance optimization

  • 2. โ€œWordPress Expertโ€ @ combell.com I blog at brechtryckaert.com Author โ€œWordPress Security 101โ€ Proud dad of Fleur! BRECHT RYCKAERT
  • 3. LET ME TELL YOU A STORY ABOUT A CRICKET AND AN ANTโ€ฆ
  • 4.
  • 5. IN MANY WAYSโ€ฆ WEโ€™RE THE CRICKET WHEN LAUNCHING A NEW WORDPRESS SITEโ€ฆ
  • 6. MORE RAM & CPU โ€จ =/= A MUCH FASTER SITE MISCONCEPTION:
  • 7. PUT IN THE WORK AND YOU WILL GET YOU A FAST SITE! BE THE ANTโ€ฆ
  • 9. โ€œYESโ€ฆ THIS SEEMS TO BE AN ACUTE CASE OF โ€จ SLUGGISHNESS IN YOUR WORDPRESSโ€
  • 10. ANALYZE THE SITE MY ANALYSIS TOOLS OF CHOICE โ–ธ Firebug in Mozilla Firefox (donโ€™t use it in Chrome) โ–ธ gtmetrix.com (combines Google Pagespeed, Yahoo YSlow, โ€ฆ)
  • 11.
  • 12.
  • 13.
  • 14. ANALYZE THE SITE IDEAL VALUES โ–ธ 30 to 50 elements -> concurrent browser connections โ–ธ 0 to 1.5 MB in size โ–ธ Less is more
  • 15.
  • 16.
  • 17.
  • 18.
  • 19. ANALYZE THE SITE WAYS TO IMPROVE LOADING SPEED โ–ธ Domain sharding โ–ธ CSS-sprites (http://css-tricks.com/css-sprites/)
  • 21. OPTIMIZE WORDPRESS SLOW INITIAL GET? โ–ธ Usually points towards too many queries โ–ธ Fix: limit or reduce the number of queries
  • 22. OPTIMIZE WORDPRESS SLOW INITIAL GET? โ–ธ Usually points towards too many queries โ–ธ Fix: limit or reduce the number of queries Reduce your plugins to the bare minimum!
  • 23. OPTIMIZE WORDPRESS OPTIMIZE IMAGES โ–ธ wp smush it โ–ธ Reduce the size of images (new and already added images)
  • 24. OPTIMIZE WORDPRESS CACHING PLUGINS โ–ธ W3 Total Cache โ–ธ WP Super Cache โ–ธ WP Rocket โ–ธ WP Faster Cache โ–ธ โ€ฆ
  • 26. โ€œYOU KNOW THATโ€™S A SECURITY PLUGIN, RIGHT?โ€
  • 27.
  • 28. OPTIMIZE WORDPRESS MY PLUGIN OF CHOICE โ–ธ Proof by Mattias Geniar:โ€จ https://ma.ttias.be/benchmarking-the-performance-of- wordfence-a-wordpress-plugin/
  • 30. SERVER SIDE TWEAKS GZIP โ–ธ Compresses the data sent from server to browser โ–ธ add to your .htaccess:โ€จ โ€จ AddOutputFilterByType DEFLATE text/plainโ€จ AddOutputFilterByType DEFLATE text/htmlโ€จ AddOutputFilterByType DEFLATE text/xmlโ€จ AddOutputFilterByType DEFLATE text/cssโ€จ AddOutputFilterByType DEFLATE application/xmlโ€จ AddOutputFilterByType DEFLATE application/xhtml+xmlโ€จ AddOutputFilterByType DEFLATE application/rss+xmlโ€จ AddOutputFilterByType DEFLATE application/javascriptโ€จ AddOutputFilterByType DEFLATE application/x-javascript
  • 31. SERVER SIDE TWEAKS DISABLE ENTITY TAGS โ–ธ Mechanism to verify if browsercache items correspond to current server version โ–ธ disable by adding this to .htaccess:โ€จ โ€จ Header unset ETagโ€จ FileETag None
  • 32. SERVER SIDE TWEAKS MOD_EXPIRES โ–ธ Allows us to take control of the browsercache without a caching plugin โ–ธ add to your .htaccess:โ€จ โ€จ # BEGIN Expire headersโ€จ <IfModule mod_expires.c>โ€จ ExpiresActive Onโ€จ ExpiresDefault "access plus 5 seconds"โ€จ ExpiresByType image/x-icon "access plus 2500000 seconds"โ€จ ExpiresByType image/jpeg "access plus 2500000 seconds"โ€จ ExpiresByType image/png "access plus 2500000 seconds"โ€จ ExpiresByType image/gif "access plus 2500000 seconds"โ€จ ExpiresByType application/x-shockwave-๏ฌ‚ash "access plus 2500000 seconds"โ€จ ExpiresByType text/css "access plus 600000 seconds"โ€จ ExpiresByType text/javascript "access plus 200000 seconds"โ€จ ExpiresByType application/javascript "access plus 200000 seconds"โ€จ ExpiresByType application/x-javascript "access plus 200000 seconds"โ€จ ExpiresByType text/html "access plus 600 seconds"โ€จ ExpiresByType application/xhtml+xml "access plus 600 seconds"โ€จ </IfModule>
  • 33. SERVER SIDE TWEAKS MOD_EXPIRES โ–ธ add to your .htaccess (second part):โ€จ โ€จ # BEGIN Cache-Control Headersโ€จ <IfModule mod_headers.c>โ€จ <๏ฌlesMatch ".(ico|jpe?g|png|gif|swf)$">โ€จ Header set Cache-Control "public"โ€จ </๏ฌlesMatch>โ€จ <๏ฌlesMatch ".(css)$">โ€จ Header set Cache-Control "public"โ€จ </๏ฌlesMatch>โ€จ <๏ฌlesMatch ".(js)$">โ€จ Header set Cache-Control "private"โ€จ </๏ฌlesMatch>โ€จ <๏ฌlesMatch ".(x?html?|php)$">โ€จ Header set Cache-Control "private, must-revalidate"โ€จ </๏ฌlesMatch>โ€จ </IfModule>โ€จ # END Cache-Control Headers
  • 35. CACHING STRATEGIES CONTENT DELIVERY NETWORK โ–ธ Cloud๏ฌ‚are โ–ธ โ€ฆ
  • 36. CACHING STRATEGIES CACHING TECHNIQUES โ–ธ Memcached โ–ธ Redis โ–ธ Varnish
  • 37. CACHING STRATEGIES CACHING TECHNIQUES โ–ธ Memcached โ–ธ Redis โ–ธ Varnish OBJECT CACHE REVERSE PROXY
  • 38. SO WHAT TECHNIQUE DO YOU CHOOSE?
  • 42. CACHING STRATEGIES IDEAL SETUP VARNISH REDIS FRONT-END QUERIES
  • 43. WHY REDIS AND NOT MEMCACHED?
  • 44. CACHING STRATEGIES WHY I PREFER REDIS โ–ธ Values up to 512MB in size (memcached limited to 1MB per key) โ–ธ Supports much more programming languages
  • 46. THANK YOU! Iโ€™LL TWEET THE LINK TO THE SLIDES ON @BRECHTRYCKAERT