SlideShare a Scribd company logo
1 of 36
High
Performance
WordPress
with your host: Mikel King
Caching, Clustering & Tuning
http://j.konex.us/mk-twttr http://j.konex.us/mk-plus http://linkd.in/in-mk
Scaling WordPress
High Performance WordPress by @MikelKing http://jafdip.com
● PHP Apps like WordPress don’t scale =
LIES!
Scaling WordPress
High Performance WordPress by @MikelKing http://jafdip.com
● PHP Apps like WordPress don’t scale = LIES!
● PHP is not JAVA so Big IRON = FAIL
Scaling WordPress
High Performance WordPress by @MikelKing http://jafdip.com
● PHP Apps like WordPress don’t scale = LIES!
● PHP is not JAVA so Big IRON = FAIL
● Caching + DB Clustering + Apache Tuning
= Success!
Scaling WordPress
High Performance WordPress by @MikelKing http://jafdip.com
User level --
Files System --
Memory Resident --
Browser
Caching Plugins
Memcache
Realms of Caching
High Performance WordPress by @MikelKing http://jafdip.com
● Is easy to turn on and easier to fail.
● Requires access to Apache conf
&& ! .htaccess
● Requires proper WordPress CSS & JS
registration and enqueuing
Browser Caching
High Performance WordPress by @MikelKing http://jafdip.com
Apache Conf Example
# 480 weeks
<FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=290304000, public"
</FilesMatch>
# 2 DAYS
<FilesMatch ".(xml|txt)$">
Header set Cache-Control "max-age=172800, public, must-revalidate"
</FilesMatch>
# 2 HOURS
<FilesMatch ".(html|htm)$">
Header set Cache-Control "max-age=7200, must-revalidate"
</FilesMatch>
High Performance WordPress by @MikelKing http://jafdip.com
wp_register_script(
'top-menu',
$this->js_template_url . 'top_menu.js',
null,
self::VERSION,
self::IN_HEADER
);
wp_enqueue_script('top-menu');
Asset Registration
High Performance WordPress by @MikelKing http://jafdip.com
● Easy to setup
● Good for shared hosting
● NOT load balancer friendly
● Plugins are written in PHP
● Does NOT reliably cache DB Objects
● Relies on file system access
File System Caching
High Performance WordPress by @MikelKing http://jafdip.com
The Caching Game
High Performance WordPress by @MikelKing http://jafdip.com
W1 Server
High Performance WordPress by @MikelKing http://jafdip.com
W3 Server
High Performance WordPress by @MikelKing http://jafdip.com
W2 Server
High Performance WordPress by @MikelKing http://jafdip.com
M1 Server
High Performance WordPress by @MikelKing http://jafdip.com
M3 Server
High Performance WordPress by @MikelKing http://jafdip.com
M3 Server
High Performance WordPress by @MikelKing http://jafdip.com
M2 Server
High Performance WordPress by @MikelKing http://jafdip.com
W4 Server
High Performance WordPress by @MikelKing http://jafdip.com
Example of DB runaway
High Performance WordPress by @MikelKing http://jafdip.com
● Stores PHP code as compiled objects
● Capable of caching DB queries as objects
● May be clustered
● Is load balancer friendly
Memory Based Caching
High Performance WordPress by @MikelKing http://jafdip.com
Example of a memcache cluster
define('WP_CACHE', true);
$memcached_servers = array(
'default' => array(
'172.16.1.244:11211',
'172.16.1.229:11211',
'172.16.1.195:11211',
'172.16.1.227:11211',
'172.16.1.218:11211’,
'172.16.1.205:11211’
)
);
High Performance WordPress by @MikelKing http://jafdip.com
Example of a memcache cluster
memcache-top v0.6 (default port: 11211, color: on, refresh: 3 seconds)
INSTANCE USAGE HIT % CONN TIME EVICT/s READ/s WRITE/s
172.16.1.244:11211 0.9% 94.5% 146 3.5ms 0.0 30.2K 308.0K
172.16.1.229:11211 33.1% 98.2% 148 1.9ms 0.0 33.1K 253.3K
172.16.1.195:11211 39.0% 97.2% 148 2.2ms 0.0 22.4K 217.8K
172.16.1.227:11211 32.2% 98.7% 148 2.1ms 0.0 128.5K 975.1K
172.16.1.218:11211 0.0% 0.0% 10 2.1ms 0.0 2 276
172.16.1.205:11211 36.3% 90.8% 148 2.1ms 0.0 25.2K 223.8K
AVERAGE: 23.6% 79.9% 124 2.3ms 0.0 39.9K 329.7K
TOTAL: 0.7GB/ 3.0GB 748 14.0ms 0.0 239.4K 1.9M
High Performance WordPress by @MikelKing http://jafdip.com
Example of a DB on memcache
High Performance WordPress by @MikelKing http://jafdip.com
Memcache is a separate service to manage
Corruption can spread like a virus
Clearing the cache requires shutting down
the entire cluster
Caveats (It’s NOT all sunshine and rainbows)
High Performance WordPress by @MikelKing http://jafdip.com
● Convert ALL tables to InnoDB
● Convert ALL collation to UTF-8
● Set innodb_buffer_pool_size = 70-80% of
total DB server available RAM
● Set thread_cache_size = 4096
● Increase the mysql ulimits
Clustering with HyperDB
High Performance WordPress by @MikelKing http://jafdip.com
Full text search is supported in the InnoDB
engine as of MySql 5.6, prior to this only the
MyISAM engine had this feature.
InnoDB became the default storage engine
in MySql 5.5 and that prior to this version
you must compile it in as an optional item.
Caveats
High Performance WordPress by @MikelKing http://jafdip.com
Debian/Ubunutu Ulimits
Excerpt: /etc/security/limits.conf
mysql soft nofile 10240
mysql hard nofile 40960
mysql soft nproc 10240
mysql hard nproc 40960
High Performance WordPress by @MikelKing http://jafdip.com
FreeBSD Ulimits
Excerpt: /etc/login.conf
daemon:
:memorylocked=64M:
:memoryuse=unlimited:
:tc=default:
High Performance WordPress by @MikelKing http://jafdip.com
Windows Ulimits
High Performance WordPress by @MikelKing http://jafdip.com
Master
$wpdb->add_database(array(
'host’ => '172.16.1.7:3336',
'user’ => 'db_admin',
'password’ => 'My$c3r3t',
'name’ => 'prod_db',
'write’ => 1,
'read’ => 1,
'dataset’ => 'global',
'timeout’ => 0.2,
'lag_threshold’ => 2,
));
Slave
$wpdb->add_database(array(
'host' => '172.16.1.9:3336’,
'user' => 'db_admin',
'password' => 'My$c3r3t',
'name' => 'prod_db',
'write' => 0,
'read’ => 1,
'dataset’ => 'global',
'timeout’ => 0.2,
'lag_threshold’ => 2,
));
HyperDB Conf (db-config.php)
High Performance WordPress by @MikelKing http://jafdip.com
● Eliminate file reads.
● Reduce the number of server limit
● Increase the allocated RAM
● Install mod_deflate
● Install mod_gzip2
Tuning Apache
High Performance WordPress by @MikelKing http://jafdip.com
House Keeping
Use the PHP native filter_var & filter_input in lieu of regex and built-
in WordPress methods
Drop WP & plugin based Search in favor of a search service
• Solr (requires a separate Java based server)
• Sphinx (is a separate service
• Elastisearch (requires a separate Hadoop server)
• GSS ( a.k.a. Google Site Search)
Enterprise Environments
High Performance WordPress by @MikelKing http://jafdip.com
General House Keeping
● Cleanout the functions.php
● Turn off unnecessary auto loaded items in wp_options
● Optimize your database with a plug-in like WP Optimize
● Leverage the power of a CDN to eliminate your serving
environment’s latency issues.
These items apply sites of any size even if you are
on shared hosting
High Performance WordPress by @MikelKing http://jafdip.com
This has been
High
Performance
WordPress
with your host: Mikel King
Caching, Clustering & Tuning
http://j.konex.us/mk-twttr http://j.konex.us/mk-plus http://linkd.in/in-mk
akhirnya
High Performance WordPress by @MikelKing http://jafdip.com

More Related Content

What's hot

Memcached: What is it and what does it do?
Memcached: What is it and what does it do?Memcached: What is it and what does it do?
Memcached: What is it and what does it do?Brian Moon
 
Roy foubister (hosting high traffic sites on a tight budget)
Roy foubister (hosting high traffic sites on a tight budget)Roy foubister (hosting high traffic sites on a tight budget)
Roy foubister (hosting high traffic sites on a tight budget)WordCamp Cape Town
 
Memcached Presentation
Memcached PresentationMemcached Presentation
Memcached PresentationAsif Ali
 
Caching and tuning fun for high scalability @ FOSDEM 2012
Caching and tuning fun for high scalability @ FOSDEM 2012Caching and tuning fun for high scalability @ FOSDEM 2012
Caching and tuning fun for high scalability @ FOSDEM 2012Wim Godden
 
Performance all teh things
Performance all teh thingsPerformance all teh things
Performance all teh thingsMarcus Deglos
 
Optimizing WordPress for Performance - WordCamp Houston
Optimizing WordPress for Performance - WordCamp HoustonOptimizing WordPress for Performance - WordCamp Houston
Optimizing WordPress for Performance - WordCamp HoustonChris Olbekson
 
Memcached: What is it and what does it do? (PHP Version)
Memcached: What is it and what does it do? (PHP Version)Memcached: What is it and what does it do? (PHP Version)
Memcached: What is it and what does it do? (PHP Version)Brian Moon
 
Web agencies: An analysis of the OVH infrastructure to optimise your web proj...
Web agencies: An analysis of the OVH infrastructure to optimise your web proj...Web agencies: An analysis of the OVH infrastructure to optimise your web proj...
Web agencies: An analysis of the OVH infrastructure to optimise your web proj...OVHcloud
 
Scaling WordPress On A Small Budget
Scaling WordPress On A Small BudgetScaling WordPress On A Small Budget
Scaling WordPress On A Small BudgetBrecht Ryckaert
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalabilityWim Godden
 
Performance Tuning - MuraCon 2012
Performance Tuning - MuraCon 2012Performance Tuning - MuraCon 2012
Performance Tuning - MuraCon 2012eballisty
 
cache concepts and varnish-cache
cache concepts and varnish-cachecache concepts and varnish-cache
cache concepts and varnish-cacheMarc Cortinas Val
 
Caching and tuning fun for high scalability @ PHPTour
Caching and tuning fun for high scalability @ PHPTourCaching and tuning fun for high scalability @ PHPTour
Caching and tuning fun for high scalability @ PHPTourWim Godden
 
Drupal, varnish, esi - Toulouse November 2
Drupal, varnish, esi - Toulouse November 2Drupal, varnish, esi - Toulouse November 2
Drupal, varnish, esi - Toulouse November 2Marcus Deglos
 
Wordpress hosting canada
Wordpress hosting canadaWordpress hosting canada
Wordpress hosting canadanewfasthost
 
WordPress Performance & Scalability
WordPress Performance & ScalabilityWordPress Performance & Scalability
WordPress Performance & ScalabilityJoseph Scott
 
Cache hcm-topdev
Cache hcm-topdevCache hcm-topdev
Cache hcm-topdevThanh Chau
 
Speeding Up The Snail
Speeding Up The SnailSpeeding Up The Snail
Speeding Up The SnailMarcus Deglos
 
Running and Scaling Magento on AWS
Running and Scaling Magento on AWSRunning and Scaling Magento on AWS
Running and Scaling Magento on AWSAOE
 

What's hot (20)

Memcached: What is it and what does it do?
Memcached: What is it and what does it do?Memcached: What is it and what does it do?
Memcached: What is it and what does it do?
 
Roy foubister (hosting high traffic sites on a tight budget)
Roy foubister (hosting high traffic sites on a tight budget)Roy foubister (hosting high traffic sites on a tight budget)
Roy foubister (hosting high traffic sites on a tight budget)
 
Memcached Presentation
Memcached PresentationMemcached Presentation
Memcached Presentation
 
Caching and tuning fun for high scalability @ FOSDEM 2012
Caching and tuning fun for high scalability @ FOSDEM 2012Caching and tuning fun for high scalability @ FOSDEM 2012
Caching and tuning fun for high scalability @ FOSDEM 2012
 
Performance all teh things
Performance all teh thingsPerformance all teh things
Performance all teh things
 
Optimizing WordPress for Performance - WordCamp Houston
Optimizing WordPress for Performance - WordCamp HoustonOptimizing WordPress for Performance - WordCamp Houston
Optimizing WordPress for Performance - WordCamp Houston
 
Memcached: What is it and what does it do? (PHP Version)
Memcached: What is it and what does it do? (PHP Version)Memcached: What is it and what does it do? (PHP Version)
Memcached: What is it and what does it do? (PHP Version)
 
Web agencies: An analysis of the OVH infrastructure to optimise your web proj...
Web agencies: An analysis of the OVH infrastructure to optimise your web proj...Web agencies: An analysis of the OVH infrastructure to optimise your web proj...
Web agencies: An analysis of the OVH infrastructure to optimise your web proj...
 
Caching
CachingCaching
Caching
 
Scaling WordPress On A Small Budget
Scaling WordPress On A Small BudgetScaling WordPress On A Small Budget
Scaling WordPress On A Small Budget
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalability
 
Performance Tuning - MuraCon 2012
Performance Tuning - MuraCon 2012Performance Tuning - MuraCon 2012
Performance Tuning - MuraCon 2012
 
cache concepts and varnish-cache
cache concepts and varnish-cachecache concepts and varnish-cache
cache concepts and varnish-cache
 
Caching and tuning fun for high scalability @ PHPTour
Caching and tuning fun for high scalability @ PHPTourCaching and tuning fun for high scalability @ PHPTour
Caching and tuning fun for high scalability @ PHPTour
 
Drupal, varnish, esi - Toulouse November 2
Drupal, varnish, esi - Toulouse November 2Drupal, varnish, esi - Toulouse November 2
Drupal, varnish, esi - Toulouse November 2
 
Wordpress hosting canada
Wordpress hosting canadaWordpress hosting canada
Wordpress hosting canada
 
WordPress Performance & Scalability
WordPress Performance & ScalabilityWordPress Performance & Scalability
WordPress Performance & Scalability
 
Cache hcm-topdev
Cache hcm-topdevCache hcm-topdev
Cache hcm-topdev
 
Speeding Up The Snail
Speeding Up The SnailSpeeding Up The Snail
Speeding Up The Snail
 
Running and Scaling Magento on AWS
Running and Scaling Magento on AWSRunning and Scaling Magento on AWS
Running and Scaling Magento on AWS
 

Similar to High performance WordPress

Dockerizing WordPress
Dockerizing WordPressDockerizing WordPress
Dockerizing WordPressdotCloud
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalabilityWim Godden
 
MySQL on Docker - Containerizing the Dolphin
MySQL on Docker - Containerizing the DolphinMySQL on Docker - Containerizing the Dolphin
MySQL on Docker - Containerizing the DolphinSeveralnines
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalabilityWim Godden
 
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
[Devconf.cz][2017] Understanding OpenShift Security Context ConstraintsAlessandro Arrichiello
 
phptek13 - Caching and tuning fun tutorial
phptek13 - Caching and tuning fun tutorialphptek13 - Caching and tuning fun tutorial
phptek13 - Caching and tuning fun tutorialWim Godden
 
Slides: Introducing the new ClusterControl 1.2.9 - with live demo
Slides: Introducing the new ClusterControl 1.2.9 - with live demo Slides: Introducing the new ClusterControl 1.2.9 - with live demo
Slides: Introducing the new ClusterControl 1.2.9 - with live demo Severalnines
 
Docker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak PeekDocker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak Peekmsyukor
 
Dockerizing WordPress
Dockerizing WordPressDockerizing WordPress
Dockerizing WordPressDocker, Inc.
 
Wordpress y Docker, de desarrollo a produccion
Wordpress y Docker, de desarrollo a produccionWordpress y Docker, de desarrollo a produccion
Wordpress y Docker, de desarrollo a produccionSysdig
 
Setting up a local WordPress Environment
Setting up a local WordPress EnvironmentSetting up a local WordPress Environment
Setting up a local WordPress EnvironmentChris La Nauze
 
Deploying Windows Containers on Windows Server 2016
Deploying Windows Containers on Windows Server 2016Deploying Windows Containers on Windows Server 2016
Deploying Windows Containers on Windows Server 2016Ben Hall
 
WordPress + NGINX Best Practices with EasyEngine
WordPress + NGINX Best Practices with EasyEngineWordPress + NGINX Best Practices with EasyEngine
WordPress + NGINX Best Practices with EasyEngineNGINX, Inc.
 
WordPress Need For Speed
WordPress Need For SpeedWordPress Need For Speed
WordPress Need For Speedpdeschen
 
Developers, Be a Bada$$ with WP-CLI
Developers, Be a Bada$$ with WP-CLIDevelopers, Be a Bada$$ with WP-CLI
Developers, Be a Bada$$ with WP-CLIWP Engine
 
Architecting cloud
Architecting cloudArchitecting cloud
Architecting cloudTahsin Hasan
 
Mysql 8 vs Mariadb 10.4 Highload++ 2019
Mysql 8 vs Mariadb 10.4 Highload++ 2019Mysql 8 vs Mariadb 10.4 Highload++ 2019
Mysql 8 vs Mariadb 10.4 Highload++ 2019Alkin Tezuysal
 
Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Ben Hall
 
Manage WordPress with Awesome using wp cli
Manage WordPress with Awesome using wp cliManage WordPress with Awesome using wp cli
Manage WordPress with Awesome using wp cliGetSource
 
A WordPress workshop at Cefalo
A WordPress workshop at Cefalo A WordPress workshop at Cefalo
A WordPress workshop at Cefalo Beroza Paul
 

Similar to High performance WordPress (20)

Dockerizing WordPress
Dockerizing WordPressDockerizing WordPress
Dockerizing WordPress
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalability
 
MySQL on Docker - Containerizing the Dolphin
MySQL on Docker - Containerizing the DolphinMySQL on Docker - Containerizing the Dolphin
MySQL on Docker - Containerizing the Dolphin
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalability
 
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
 
phptek13 - Caching and tuning fun tutorial
phptek13 - Caching and tuning fun tutorialphptek13 - Caching and tuning fun tutorial
phptek13 - Caching and tuning fun tutorial
 
Slides: Introducing the new ClusterControl 1.2.9 - with live demo
Slides: Introducing the new ClusterControl 1.2.9 - with live demo Slides: Introducing the new ClusterControl 1.2.9 - with live demo
Slides: Introducing the new ClusterControl 1.2.9 - with live demo
 
Docker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak PeekDocker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak Peek
 
Dockerizing WordPress
Dockerizing WordPressDockerizing WordPress
Dockerizing WordPress
 
Wordpress y Docker, de desarrollo a produccion
Wordpress y Docker, de desarrollo a produccionWordpress y Docker, de desarrollo a produccion
Wordpress y Docker, de desarrollo a produccion
 
Setting up a local WordPress Environment
Setting up a local WordPress EnvironmentSetting up a local WordPress Environment
Setting up a local WordPress Environment
 
Deploying Windows Containers on Windows Server 2016
Deploying Windows Containers on Windows Server 2016Deploying Windows Containers on Windows Server 2016
Deploying Windows Containers on Windows Server 2016
 
WordPress + NGINX Best Practices with EasyEngine
WordPress + NGINX Best Practices with EasyEngineWordPress + NGINX Best Practices with EasyEngine
WordPress + NGINX Best Practices with EasyEngine
 
WordPress Need For Speed
WordPress Need For SpeedWordPress Need For Speed
WordPress Need For Speed
 
Developers, Be a Bada$$ with WP-CLI
Developers, Be a Bada$$ with WP-CLIDevelopers, Be a Bada$$ with WP-CLI
Developers, Be a Bada$$ with WP-CLI
 
Architecting cloud
Architecting cloudArchitecting cloud
Architecting cloud
 
Mysql 8 vs Mariadb 10.4 Highload++ 2019
Mysql 8 vs Mariadb 10.4 Highload++ 2019Mysql 8 vs Mariadb 10.4 Highload++ 2019
Mysql 8 vs Mariadb 10.4 Highload++ 2019
 
Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)
 
Manage WordPress with Awesome using wp cli
Manage WordPress with Awesome using wp cliManage WordPress with Awesome using wp cli
Manage WordPress with Awesome using wp cli
 
A WordPress workshop at Cefalo
A WordPress workshop at Cefalo A WordPress workshop at Cefalo
A WordPress workshop at Cefalo
 

Recently uploaded

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 

Recently uploaded (20)

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 

High performance WordPress

  • 1. High Performance WordPress with your host: Mikel King Caching, Clustering & Tuning http://j.konex.us/mk-twttr http://j.konex.us/mk-plus http://linkd.in/in-mk
  • 2. Scaling WordPress High Performance WordPress by @MikelKing http://jafdip.com
  • 3. ● PHP Apps like WordPress don’t scale = LIES! Scaling WordPress High Performance WordPress by @MikelKing http://jafdip.com
  • 4. ● PHP Apps like WordPress don’t scale = LIES! ● PHP is not JAVA so Big IRON = FAIL Scaling WordPress High Performance WordPress by @MikelKing http://jafdip.com
  • 5. ● PHP Apps like WordPress don’t scale = LIES! ● PHP is not JAVA so Big IRON = FAIL ● Caching + DB Clustering + Apache Tuning = Success! Scaling WordPress High Performance WordPress by @MikelKing http://jafdip.com
  • 6. User level -- Files System -- Memory Resident -- Browser Caching Plugins Memcache Realms of Caching High Performance WordPress by @MikelKing http://jafdip.com
  • 7. ● Is easy to turn on and easier to fail. ● Requires access to Apache conf && ! .htaccess ● Requires proper WordPress CSS & JS registration and enqueuing Browser Caching High Performance WordPress by @MikelKing http://jafdip.com
  • 8. Apache Conf Example # 480 weeks <FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> Header set Cache-Control "max-age=290304000, public" </FilesMatch> # 2 DAYS <FilesMatch ".(xml|txt)$"> Header set Cache-Control "max-age=172800, public, must-revalidate" </FilesMatch> # 2 HOURS <FilesMatch ".(html|htm)$"> Header set Cache-Control "max-age=7200, must-revalidate" </FilesMatch> High Performance WordPress by @MikelKing http://jafdip.com
  • 10. ● Easy to setup ● Good for shared hosting ● NOT load balancer friendly ● Plugins are written in PHP ● Does NOT reliably cache DB Objects ● Relies on file system access File System Caching High Performance WordPress by @MikelKing http://jafdip.com
  • 11. The Caching Game High Performance WordPress by @MikelKing http://jafdip.com
  • 12. W1 Server High Performance WordPress by @MikelKing http://jafdip.com
  • 13. W3 Server High Performance WordPress by @MikelKing http://jafdip.com
  • 14. W2 Server High Performance WordPress by @MikelKing http://jafdip.com
  • 15. M1 Server High Performance WordPress by @MikelKing http://jafdip.com
  • 16. M3 Server High Performance WordPress by @MikelKing http://jafdip.com
  • 17. M3 Server High Performance WordPress by @MikelKing http://jafdip.com
  • 18. M2 Server High Performance WordPress by @MikelKing http://jafdip.com
  • 19. W4 Server High Performance WordPress by @MikelKing http://jafdip.com
  • 20. Example of DB runaway High Performance WordPress by @MikelKing http://jafdip.com
  • 21. ● Stores PHP code as compiled objects ● Capable of caching DB queries as objects ● May be clustered ● Is load balancer friendly Memory Based Caching High Performance WordPress by @MikelKing http://jafdip.com
  • 22. Example of a memcache cluster define('WP_CACHE', true); $memcached_servers = array( 'default' => array( '172.16.1.244:11211', '172.16.1.229:11211', '172.16.1.195:11211', '172.16.1.227:11211', '172.16.1.218:11211’, '172.16.1.205:11211’ ) ); High Performance WordPress by @MikelKing http://jafdip.com
  • 23. Example of a memcache cluster memcache-top v0.6 (default port: 11211, color: on, refresh: 3 seconds) INSTANCE USAGE HIT % CONN TIME EVICT/s READ/s WRITE/s 172.16.1.244:11211 0.9% 94.5% 146 3.5ms 0.0 30.2K 308.0K 172.16.1.229:11211 33.1% 98.2% 148 1.9ms 0.0 33.1K 253.3K 172.16.1.195:11211 39.0% 97.2% 148 2.2ms 0.0 22.4K 217.8K 172.16.1.227:11211 32.2% 98.7% 148 2.1ms 0.0 128.5K 975.1K 172.16.1.218:11211 0.0% 0.0% 10 2.1ms 0.0 2 276 172.16.1.205:11211 36.3% 90.8% 148 2.1ms 0.0 25.2K 223.8K AVERAGE: 23.6% 79.9% 124 2.3ms 0.0 39.9K 329.7K TOTAL: 0.7GB/ 3.0GB 748 14.0ms 0.0 239.4K 1.9M High Performance WordPress by @MikelKing http://jafdip.com
  • 24. Example of a DB on memcache High Performance WordPress by @MikelKing http://jafdip.com
  • 25. Memcache is a separate service to manage Corruption can spread like a virus Clearing the cache requires shutting down the entire cluster Caveats (It’s NOT all sunshine and rainbows) High Performance WordPress by @MikelKing http://jafdip.com
  • 26. ● Convert ALL tables to InnoDB ● Convert ALL collation to UTF-8 ● Set innodb_buffer_pool_size = 70-80% of total DB server available RAM ● Set thread_cache_size = 4096 ● Increase the mysql ulimits Clustering with HyperDB High Performance WordPress by @MikelKing http://jafdip.com
  • 27. Full text search is supported in the InnoDB engine as of MySql 5.6, prior to this only the MyISAM engine had this feature. InnoDB became the default storage engine in MySql 5.5 and that prior to this version you must compile it in as an optional item. Caveats High Performance WordPress by @MikelKing http://jafdip.com
  • 28. Debian/Ubunutu Ulimits Excerpt: /etc/security/limits.conf mysql soft nofile 10240 mysql hard nofile 40960 mysql soft nproc 10240 mysql hard nproc 40960 High Performance WordPress by @MikelKing http://jafdip.com
  • 30. Windows Ulimits High Performance WordPress by @MikelKing http://jafdip.com
  • 31. Master $wpdb->add_database(array( 'host’ => '172.16.1.7:3336', 'user’ => 'db_admin', 'password’ => 'My$c3r3t', 'name’ => 'prod_db', 'write’ => 1, 'read’ => 1, 'dataset’ => 'global', 'timeout’ => 0.2, 'lag_threshold’ => 2, )); Slave $wpdb->add_database(array( 'host' => '172.16.1.9:3336’, 'user' => 'db_admin', 'password' => 'My$c3r3t', 'name' => 'prod_db', 'write' => 0, 'read’ => 1, 'dataset’ => 'global', 'timeout’ => 0.2, 'lag_threshold’ => 2, )); HyperDB Conf (db-config.php) High Performance WordPress by @MikelKing http://jafdip.com
  • 32. ● Eliminate file reads. ● Reduce the number of server limit ● Increase the allocated RAM ● Install mod_deflate ● Install mod_gzip2 Tuning Apache High Performance WordPress by @MikelKing http://jafdip.com
  • 33. House Keeping Use the PHP native filter_var & filter_input in lieu of regex and built- in WordPress methods Drop WP & plugin based Search in favor of a search service • Solr (requires a separate Java based server) • Sphinx (is a separate service • Elastisearch (requires a separate Hadoop server) • GSS ( a.k.a. Google Site Search) Enterprise Environments High Performance WordPress by @MikelKing http://jafdip.com
  • 34. General House Keeping ● Cleanout the functions.php ● Turn off unnecessary auto loaded items in wp_options ● Optimize your database with a plug-in like WP Optimize ● Leverage the power of a CDN to eliminate your serving environment’s latency issues. These items apply sites of any size even if you are on shared hosting High Performance WordPress by @MikelKing http://jafdip.com
  • 35. This has been High Performance WordPress with your host: Mikel King Caching, Clustering & Tuning http://j.konex.us/mk-twttr http://j.konex.us/mk-plus http://linkd.in/in-mk
  • 36. akhirnya High Performance WordPress by @MikelKing http://jafdip.com

Editor's Notes

  1. These candies represent page requests.
  2. The load balancer directs the user’s request for a blue page. Fortunately W1 has a copy of the page in it’s cache.
  3. The load balancer directs the user’s request for a green page. Fortunately W3 has a copy of the page in it’s cache.
  4. The load balancer directs the user’s request for a pink page. Unfortunately W2 does not have a copy of the page in it’s cache, therefore; a page must be completely built from scratch by WordPress before fulfilling the request.
  5. The load balancer directs the user’s request for a blue page. Fortunately M1 is able to access a copy of the page in memcache.
  6. The load balancer directs the user’s request for a blue page. Fortunately M3 is able to access a copy of the page in memcache.
  7. The load balancer directs the user’s request for a blue page. Fortunately M3 is able to access a copy of the page in memcache.
  8. M2 boots up and receives a user request for a pink page. Fortunately M2 is able to access a copy of the page already in memcache.
  9. W4 boots up and receives a user request for a green page. Unfortunately W4 is has no cache and must start from scratch.
  10. ----- Meeting Notes (8/4/14 23:18) ----- In this view of our New Relic graphs you see what happens when queries start bottlenecking in the DB system. Once the problem start only HUPing the web services to clear the condition.
  11. If you do not have control of your hosting environment you may not be able to upgrade to the current MySql server. If you do not require full text search in InnoDB then it WILL not be a problem.
  12. Using the internal WordPress search will slow down your systems. These search system index your site and serve the results from that outside index and do not impact the load on your WordPress systems. The native PHP filter_var and filter_input mthods are only supported in PHP versions 5.2 and later so you may need to upgrade in order to use it. The main benefit is that these methods are written in C and are an order of magnitude faster than anything you could write in PHP to do the same job. Do not use them in code you intend to publish back to the WordPress community like plugins and themes because you can not guarantee another user’s PHP environment.