SlideShare a Scribd company logo
Pushing PHP to the Limit: 
Web Server PHP Performance Comparisons 
LiteSpeed vs. Apache vs. NGINX
Breakdown of the presentation 
1. Overview of technology discussed 
2. Benchmarks 
3. Different PHP setups in LiteSpeed Web 
Server (LSAPI) 
4. Questions
Web Servers
Web servers (discussed) 
● Apache (httpd) 
● NGINX 
● LiteSpeed Web Server (LSWS) 
● OpenLiteSpeed
Differences between 
OpenLiteSpeed and LSWS 
OpenLiteSpeed: 
● Uses OpenLiteSpeed-native configs exclusively 
● Free and open source 
LiteSpeed Web Server: 
● Can use Apache configs (control panel compatible) 
● Paid license system
Web servers (not discussed) 
● Microsoft IIS 
● Tomcat 
● Lighty (lighttpd) 
● Cherokee 
● Others 
Why not? 
IIS is only for Windows and nobody uses the rest of these. 
(Less than 0.5% of sites.)
PHP
Why PHP? 
Because it is far and away the most used 
scripting language on the Internet. 
(82% of sites according to the latest 
W3Techs survey.)
Web server-PHP interaction 
● PHP is a scripting language 
● Web servers do not process PHP directly 
● PHP is processed by a PHP engine on the 
backend 
● Web servers use a variety of SAPIs to 
communicate with the PHP engine
SAPIs 
Server Application Programming Interfaces
What is an SAPI? 
An interface for communicating with an 
application (like the PHP engine).
SAPIs for PHP (discussed) 
1. mod_php (Apache) 
2. CGI (Apache) 
3. FCGI (Apache, NGINX, and LSWS) 
4. LSAPI (LSWS and Apache*) 
* mod_lsapi for Apache available only to CloudLinux users.
suEXEC? 
Running scripts as a separate user (often 
one user per virtual host).
mod_php (DSO) 
● Runs PHP as a module embedded in 
Apache processes 
● Requires no interprocess communication 
● Can use persistent processes 
● Fastest Apache implementation of PHP 
● All scripts run as nobody 
● Requires Apache prefork
CGI 
● Used by Apache 
● PHP run through external CGI module 
● Creates a new process for each request 
(lots of overhead) 
● Slow and unscalable 
● Can run suEXEC
FCGI (FastCGI) 
● Used by Apache and NGINX 
● Runs PHP as an external instance 
● Created to be faster than CGI (less overhead) 
● Persistent processes handle many requests 
instead of creating a new process each time 
● Saves CPU, but persistent processes can waste 
RAM 
● Can run suEXEC
LSAPI (LiteSpeed SAPI) 
● Created because none of the previous 
SAPIs gave the performance and control 
we wanted 
● External instance 
● Similar layout to FCGI, but optimized 
● Can run suEXEC
LSAPI Optimizations 
● Utilizes web server request parsing results 
for less overhead 
● Persistent processes dynamically forked to 
save resources 
● Different modes of process handling for 
different needs 
● Allows per-directory configuration overrides
The Benchmarks
Three benchmarks 
1. LSWS vs. NGINX for small PHP scripts (new and 
unreleased) 
1. LSWS vs. OpenLiteSpeed vs. Apache vs. NGINX for 
small PHP scripts (previously published) 
1. LSWS vs. Apache for WordPress (presented by 
cPanel at cPanel Conference 2014, measured 
speed and resource usage)
Benchmark 1 
LSWS vs. NGINX for small PHP scripts (new)
Setup 
Server: 
● Intel Xeon E5-1620 Quad Core @ 3.60GHz 
● 8GB RAM 
Configs mostly defaults with small amount of optimization 
for NGINX. Full configs will be released on our site. 
AB: 
ab_new -n 50000 -c 100
Benchmark 1 results (no keep alive)
Benchmark 1 results (keep alive)
Benchmark 1 takeaways 
LSWS outperformed NGINX: 
● by 26% with keep alive connections off 
● by 91% with keep alive connections on
Benchmark 2 
LSWS vs. OpenLiteSpeed vs. Apache vs. NGINX for 
small PHP scripts (previously published)
Setup 
Server: 
● Intel Xeon E5-1620 Quad Core @ 3.60GHz (limited to 1 
core) 
● 8GB RAM 
Configs mostly defaults. Full configs can be found on our 
site. 
AB: 
ab_new -n 50000 -c 100
Benchmark 2 results 
(no keep alive)
Benchmark 2 results (keep alive)
Benchmark 2 takeaways 
● LSWS and OpenLiteSpeed outperformed all 
others 
● Difference between LSWS and NGINX preserved 
● Apache 2.2 with mod_PHP next fastest (about 
50% slower than LSWS) 
● LSAPI makes a 15-20% difference 
● All web servers did better with keep-alive on
Benchmark 3 
LSWS vs. Apache for WordPress 
(courtesy of Tristan Wallace, cPanel)
Setup 
VPS: 
● 1 core 
● 1GB RAM 
Dedicated server: 
● 4 cores 
● 8GB RAM
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed technologies)
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed technologies)
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed technologies)
Benchmark 3 takeaways 
● Speed difference shown again, even with 
other applications 
● Resource advantage of event-driven 
architecture (VPSs with Apache couldn't 
even handle 50 concurrent connections) 
● Resource advantage of LSAPI
Benchmark Wrapup 
What have we learned?
What happened? 
● Basically, LSWS and OpenLiteSpeed beat 
all comers by at least 25% 
● The difference was most pronounced vs. 
Apache setups that use suEXEC
Why? 
● LSAPI is optimized 
● LSWS is built for performance and geared 
especially for performance with LSAPI
Debate? 
If you wish to debate these benchmarks, please contact 
me or post to our forum. We are happy to try different 
settings if there is good reason to believe they will make 
a difference. 
Forum: http://www.litespeedtech.com/support/forum/ 
Me: marmstrong@litespeedtech.com
LSAPI 
What can you do with it?
LiteSpeed Server API 
● API for communication with an application backend 
● Open source 
● Designed specifically for LSWS (for better integration) 
● Highly optimized by default 
● Offers three different modes of handling PHP 
processes for different needs 
● Allows for high-performance suEXEC setups 
● Available for PHP, Ruby, and Python 
http://www.litespeedtech.com/products/litespeed-sapi/php
LSAPI PHP Modes 
1.Worker 
2. Daemon 
3. ProcessGroup 
All can be suEXEC
Worker Mode 
● Default mode 
● Similar to PHP with CGI 
● New process each time PHP is needed 
● Creating new processes has overhead 
● Can save resources because there are no 
more processes than needed 
● No effective suEXEC opcode caching
Daemon Mode 
● Forks all processes from a persistent 
parent process (even in suEXEC) 
● Spawning child processes is faster than 
creating new processes 
● Allows for somewhat more effective 
suEXEC opcode caching
Setting up Daemon Mode 
WebAdmin console > Configuration > 
External App > your LSPHP external 
application: 
1. Set Auto Start to "Yes". 
2. Set Run On Start Up to "suEXEC Daemon".
ProcessGroup Mode 
● Similar to PHP-FPM pools (except easy to set up) 
● Really only for suEXEC settings 
● One parent process for each user 
● Parent process spawns child processes on demand 
● Spawning child processes is faster than creating new 
processes 
● Allows for per-user opcode caching in a suEXEC setting 
● Extra parent processes consume extra resources 
● Not available for OpenLiteSpeed
Setting up PHP ProcessGroup 
Add the following to an Apache 
configuration file: 
<IfModule LiteSpeed> 
LSPHP_ProcessGroup on 
LSPHP_Workers 15 
</IfModule>
Future improvements to LSAPI 
● Event-driven PHP processing 
● HHVM integration
Conclusions
Conclusions 
● LSWS and OpenLiteSpeed serve PHP 25- 
100% faster than other major web 
servers 
● Partly due to LSAPI's optimization 
● Partly due to LSWS and OpenLiteSpeed's 
optimized integration with LSAPI
Conclusions (LSAPI) 
● LSAPI = faster PHP 
● LSAPI's suEXEC implementation allows for 
speed and security 
● LSAPI modes and config overrides allow 
easy configuration for different uses 
● Opcode caching even with suEXEC

More Related Content

What's hot (20)

PPTX
[Blibli Brown Bag] Nodejs - The Other Side of Javascript
Irfan Maulana
 
PDF
Florian Koch - Monitoring CoreOS with Zabbix
Zabbix
 
PDF
Using Zabbix API from Drupal
Ricardo Santos
 
PDF
Phalcon Framework: San Antonio Web Developers Group
jdfreeman11
 
PDF
OSS at Microsoft
weltling
 
PPTX
Functional Programming in PHP
Aurimas Niekis
 
PPT
Drush and drupal. администрирование волчек михаил
drupalconf
 
PDF
Symfony presentation
maxpower57
 
PDF
PHP is the King, nodejs the prince and python the fool
Alessandro Cinelli (cirpo)
 
PDF
PHP is the king, nodejs is the prince and Lua is the fool
Alessandro Cinelli (cirpo)
 
PDF
The State of PHP 2014 - Portsmouth Linux User Group (6th June 2014)
James Titcumb
 
PDF
WP-CLI Talk from WordCamp Montreal
Shawn Hooper
 
PDF
About Caching
Weng Wei
 
PDF
Modern infrastructure as code with ansible cake fest 2021
Joe Ferguson
 
PPTX
PHP Indonesia - Nodejs Web Development
Irfan Maulana
 
PDF
Afrimadoni the power of docker
PHP Indonesia
 
PDF
PHP is the King, nodejs is the Prince and Lua is the fool
Alessandro Cinelli (cirpo)
 
PDF
Engage 2014 OpenNTF Domino API Slides
Paul Withers
 
PDF
Modern Web App Development using ClojureScript & React.js / Baishampayan “BG”...
Ontico
 
PDF
Getting Started With WP REST API
Kishor Kumar
 
[Blibli Brown Bag] Nodejs - The Other Side of Javascript
Irfan Maulana
 
Florian Koch - Monitoring CoreOS with Zabbix
Zabbix
 
Using Zabbix API from Drupal
Ricardo Santos
 
Phalcon Framework: San Antonio Web Developers Group
jdfreeman11
 
OSS at Microsoft
weltling
 
Functional Programming in PHP
Aurimas Niekis
 
Drush and drupal. администрирование волчек михаил
drupalconf
 
Symfony presentation
maxpower57
 
PHP is the King, nodejs the prince and python the fool
Alessandro Cinelli (cirpo)
 
PHP is the king, nodejs is the prince and Lua is the fool
Alessandro Cinelli (cirpo)
 
The State of PHP 2014 - Portsmouth Linux User Group (6th June 2014)
James Titcumb
 
WP-CLI Talk from WordCamp Montreal
Shawn Hooper
 
About Caching
Weng Wei
 
Modern infrastructure as code with ansible cake fest 2021
Joe Ferguson
 
PHP Indonesia - Nodejs Web Development
Irfan Maulana
 
Afrimadoni the power of docker
PHP Indonesia
 
PHP is the King, nodejs is the Prince and Lua is the fool
Alessandro Cinelli (cirpo)
 
Engage 2014 OpenNTF Domino API Slides
Paul Withers
 
Modern Web App Development using ClojureScript & React.js / Baishampayan “BG”...
Ontico
 
Getting Started With WP REST API
Kishor Kumar
 

Similar to Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed technologies) (20)

PPTX
Supercharging your PHP pages with mod_lsapi in CloudLinux OS
CloudLinux
 
PPTX
Advantages of cPanel-based LiteSpeed Hosting
Lisa Clarke
 
PDF
Introduction to LiteSpeed
Gabriel Răileanu
 
PDF
Beyond Apache: Faster Web Servers
webhostingguy
 
PPTX
Web Servers(IIS, NGINX, APACHE)
Reza Jebeli
 
ODP
Choosing a Web Architecture for Perl
Perrin Harkins
 
PDF
Web servers presentacion
Kiwi Science
 
PPT
Download It
webhostingguy
 
PPTX
Apache web server
Rishabh Bahukhandi
 
PPTX
PHP, LAMP Stack & WordPress
Suman Srinivasan
 
PPSX
webservers
Ewere Diagboya
 
PPTX
Lamp technology ppt for lamp teachnology
NMadhu5
 
PDF
Scale Apache with Nginx
Bud Siddhisena
 
PPTX
Robust WordPress Installation using L2MP Stack
Alex Bertens
 
PDF
Apache web server tutorial for linux
Sahad Sali
 
DOC
Nginx 0.8.x + php 5.2.13 (fast cgi) setup web server
wruben
 
PPT
Lamp
anurag1p
 
ODP
web server
nava rathna
 
PPTX
Lamp technology
Harish Sabbani
 
Supercharging your PHP pages with mod_lsapi in CloudLinux OS
CloudLinux
 
Advantages of cPanel-based LiteSpeed Hosting
Lisa Clarke
 
Introduction to LiteSpeed
Gabriel Răileanu
 
Beyond Apache: Faster Web Servers
webhostingguy
 
Web Servers(IIS, NGINX, APACHE)
Reza Jebeli
 
Choosing a Web Architecture for Perl
Perrin Harkins
 
Web servers presentacion
Kiwi Science
 
Download It
webhostingguy
 
Apache web server
Rishabh Bahukhandi
 
PHP, LAMP Stack & WordPress
Suman Srinivasan
 
webservers
Ewere Diagboya
 
Lamp technology ppt for lamp teachnology
NMadhu5
 
Scale Apache with Nginx
Bud Siddhisena
 
Robust WordPress Installation using L2MP Stack
Alex Bertens
 
Apache web server tutorial for linux
Sahad Sali
 
Nginx 0.8.x + php 5.2.13 (fast cgi) setup web server
wruben
 
Lamp
anurag1p
 
web server
nava rathna
 
Lamp technology
Harish Sabbani
 
Ad

More from Ontico (20)

PDF
One-cloud — система управления дата-центром в Одноклассниках / Олег Анастасье...
Ontico
 
PDF
Масштабируя DNS / Артем Гавриченков (Qrator Labs)
Ontico
 
PPTX
Создание BigData-платформы для ФГУП Почта России / Андрей Бащенко (Luxoft)
Ontico
 
PDF
Готовим тестовое окружение, или сколько тестовых инстансов вам нужно / Алекса...
Ontico
 
PDF
Новые технологии репликации данных в PostgreSQL / Александр Алексеев (Postgre...
Ontico
 
PDF
PostgreSQL Configuration for Humans / Alvaro Hernandez (OnGres)
Ontico
 
PDF
Inexpensive Datamasking for MySQL with ProxySQL — Data Anonymization for Deve...
Ontico
 
PDF
Опыт разработки модуля межсетевого экранирования для MySQL / Олег Брославский...
Ontico
 
PPTX
ProxySQL Use Case Scenarios / Alkin Tezuysal (Percona)
Ontico
 
PPTX
MySQL Replication — Advanced Features / Петр Зайцев (Percona)
Ontico
 
PDF
Внутренний open-source. Как разрабатывать мобильное приложение большим количе...
Ontico
 
PPTX
Подробно о том, как Causal Consistency реализовано в MongoDB / Михаил Тюленев...
Ontico
 
PPTX
Балансировка на скорости проводов. Без ASIC, без ограничений. Решения NFWare ...
Ontico
 
PDF
Перехват трафика — мифы и реальность / Евгений Усков (Qrator Labs)
Ontico
 
PPT
И тогда наверняка вдруг запляшут облака! / Алексей Сушков (ПЕТЕР-СЕРВИС)
Ontico
 
PPTX
Как мы заставили Druid работать в Одноклассниках / Юрий Невиницин (OK.RU)
Ontico
 
PPTX
Разгоняем ASP.NET Core / Илья Вербицкий (WebStoating s.r.o.)
Ontico
 
PPTX
100500 способов кэширования в Oracle Database или как достичь максимальной ск...
Ontico
 
PPTX
Apache Ignite Persistence: зачем Persistence для In-Memory, и как он работает...
Ontico
 
PDF
Механизмы мониторинга баз данных: взгляд изнутри / Дмитрий Еманов (Firebird P...
Ontico
 
One-cloud — система управления дата-центром в Одноклассниках / Олег Анастасье...
Ontico
 
Масштабируя DNS / Артем Гавриченков (Qrator Labs)
Ontico
 
Создание BigData-платформы для ФГУП Почта России / Андрей Бащенко (Luxoft)
Ontico
 
Готовим тестовое окружение, или сколько тестовых инстансов вам нужно / Алекса...
Ontico
 
Новые технологии репликации данных в PostgreSQL / Александр Алексеев (Postgre...
Ontico
 
PostgreSQL Configuration for Humans / Alvaro Hernandez (OnGres)
Ontico
 
Inexpensive Datamasking for MySQL with ProxySQL — Data Anonymization for Deve...
Ontico
 
Опыт разработки модуля межсетевого экранирования для MySQL / Олег Брославский...
Ontico
 
ProxySQL Use Case Scenarios / Alkin Tezuysal (Percona)
Ontico
 
MySQL Replication — Advanced Features / Петр Зайцев (Percona)
Ontico
 
Внутренний open-source. Как разрабатывать мобильное приложение большим количе...
Ontico
 
Подробно о том, как Causal Consistency реализовано в MongoDB / Михаил Тюленев...
Ontico
 
Балансировка на скорости проводов. Без ASIC, без ограничений. Решения NFWare ...
Ontico
 
Перехват трафика — мифы и реальность / Евгений Усков (Qrator Labs)
Ontico
 
И тогда наверняка вдруг запляшут облака! / Алексей Сушков (ПЕТЕР-СЕРВИС)
Ontico
 
Как мы заставили Druid работать в Одноклассниках / Юрий Невиницин (OK.RU)
Ontico
 
Разгоняем ASP.NET Core / Илья Вербицкий (WebStoating s.r.o.)
Ontico
 
100500 способов кэширования в Oracle Database или как достичь максимальной ск...
Ontico
 
Apache Ignite Persistence: зачем Persistence для In-Memory, и как он работает...
Ontico
 
Механизмы мониторинга баз данных: взгляд изнутри / Дмитрий Еманов (Firebird P...
Ontico
 
Ad

Recently uploaded (20)

PPTX
一比一原版(LaTech毕业证)路易斯安那理工大学毕业证如何办理
Taqyea
 
PPTX
ONLINE BIRTH CERTIFICATE APPLICATION SYSYTEM PPT.pptx
ShyamasreeDutta
 
PDF
Apple_Environmental_Progress_Report_2025.pdf
yiukwong
 
PPTX
PE introd.pptxfrgfgfdgfdgfgrtretrt44t444
nepmithibai2024
 
PPTX
法国巴黎第二大学本科毕业证{Paris 2学费发票Paris 2成绩单}办理方法
Taqyea
 
PDF
Azure_DevOps introduction for CI/CD and Agile
henrymails
 
PPTX
L1A Season 1 ENGLISH made by A hegy fixed
toszolder91
 
PPT
introductio to computers by arthur janry
RamananMuthukrishnan
 
PPTX
Research Design - Report on seminar in thesis writing. PPTX
arvielobos1
 
PPTX
英国假毕业证诺森比亚大学成绩单GPA修改UNN学生卡网上可查学历成绩单
Taqyea
 
PPTX
一比一原版(SUNY-Albany毕业证)纽约州立大学奥尔巴尼分校毕业证如何办理
Taqyea
 
PDF
The-Hidden-Dangers-of-Skipping-Penetration-Testing.pdf.pdf
naksh4thra
 
PPTX
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
PPT
Computer Securityyyyyyyy - Chapter 2.ppt
SolomonSB
 
PPTX
Presentation3gsgsgsgsdfgadgsfgfgsfgagsfgsfgzfdgsdgs.pptx
SUB03
 
PPT
introduction to networking with basics coverage
RamananMuthukrishnan
 
PPT
Agilent Optoelectronic Solutions for Mobile Application
andreashenniger2
 
PDF
DevOps Design for different deployment options
henrymails
 
PPTX
INTEGRATION OF ICT IN LEARNING AND INCORPORATIING TECHNOLOGY
kvshardwork1235
 
PPTX
sajflsajfljsdfljslfjslfsdfas;fdsfksadfjlsdflkjslgfs;lfjlsajfl;sajfasfd.pptx
theknightme
 
一比一原版(LaTech毕业证)路易斯安那理工大学毕业证如何办理
Taqyea
 
ONLINE BIRTH CERTIFICATE APPLICATION SYSYTEM PPT.pptx
ShyamasreeDutta
 
Apple_Environmental_Progress_Report_2025.pdf
yiukwong
 
PE introd.pptxfrgfgfdgfdgfgrtretrt44t444
nepmithibai2024
 
法国巴黎第二大学本科毕业证{Paris 2学费发票Paris 2成绩单}办理方法
Taqyea
 
Azure_DevOps introduction for CI/CD and Agile
henrymails
 
L1A Season 1 ENGLISH made by A hegy fixed
toszolder91
 
introductio to computers by arthur janry
RamananMuthukrishnan
 
Research Design - Report on seminar in thesis writing. PPTX
arvielobos1
 
英国假毕业证诺森比亚大学成绩单GPA修改UNN学生卡网上可查学历成绩单
Taqyea
 
一比一原版(SUNY-Albany毕业证)纽约州立大学奥尔巴尼分校毕业证如何办理
Taqyea
 
The-Hidden-Dangers-of-Skipping-Penetration-Testing.pdf.pdf
naksh4thra
 
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
Computer Securityyyyyyyy - Chapter 2.ppt
SolomonSB
 
Presentation3gsgsgsgsdfgadgsfgfgsfgagsfgsfgzfdgsdgs.pptx
SUB03
 
introduction to networking with basics coverage
RamananMuthukrishnan
 
Agilent Optoelectronic Solutions for Mobile Application
andreashenniger2
 
DevOps Design for different deployment options
henrymails
 
INTEGRATION OF ICT IN LEARNING AND INCORPORATIING TECHNOLOGY
kvshardwork1235
 
sajflsajfljsdfljslfjslfsdfas;fdsfksadfjlsdflkjslgfs;lfjlsajfl;sajfasfd.pptx
theknightme
 

Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed technologies)

  • 1. Pushing PHP to the Limit: Web Server PHP Performance Comparisons LiteSpeed vs. Apache vs. NGINX
  • 2. Breakdown of the presentation 1. Overview of technology discussed 2. Benchmarks 3. Different PHP setups in LiteSpeed Web Server (LSAPI) 4. Questions
  • 4. Web servers (discussed) ● Apache (httpd) ● NGINX ● LiteSpeed Web Server (LSWS) ● OpenLiteSpeed
  • 5. Differences between OpenLiteSpeed and LSWS OpenLiteSpeed: ● Uses OpenLiteSpeed-native configs exclusively ● Free and open source LiteSpeed Web Server: ● Can use Apache configs (control panel compatible) ● Paid license system
  • 6. Web servers (not discussed) ● Microsoft IIS ● Tomcat ● Lighty (lighttpd) ● Cherokee ● Others Why not? IIS is only for Windows and nobody uses the rest of these. (Less than 0.5% of sites.)
  • 7. PHP
  • 8. Why PHP? Because it is far and away the most used scripting language on the Internet. (82% of sites according to the latest W3Techs survey.)
  • 9. Web server-PHP interaction ● PHP is a scripting language ● Web servers do not process PHP directly ● PHP is processed by a PHP engine on the backend ● Web servers use a variety of SAPIs to communicate with the PHP engine
  • 10. SAPIs Server Application Programming Interfaces
  • 11. What is an SAPI? An interface for communicating with an application (like the PHP engine).
  • 12. SAPIs for PHP (discussed) 1. mod_php (Apache) 2. CGI (Apache) 3. FCGI (Apache, NGINX, and LSWS) 4. LSAPI (LSWS and Apache*) * mod_lsapi for Apache available only to CloudLinux users.
  • 13. suEXEC? Running scripts as a separate user (often one user per virtual host).
  • 14. mod_php (DSO) ● Runs PHP as a module embedded in Apache processes ● Requires no interprocess communication ● Can use persistent processes ● Fastest Apache implementation of PHP ● All scripts run as nobody ● Requires Apache prefork
  • 15. CGI ● Used by Apache ● PHP run through external CGI module ● Creates a new process for each request (lots of overhead) ● Slow and unscalable ● Can run suEXEC
  • 16. FCGI (FastCGI) ● Used by Apache and NGINX ● Runs PHP as an external instance ● Created to be faster than CGI (less overhead) ● Persistent processes handle many requests instead of creating a new process each time ● Saves CPU, but persistent processes can waste RAM ● Can run suEXEC
  • 17. LSAPI (LiteSpeed SAPI) ● Created because none of the previous SAPIs gave the performance and control we wanted ● External instance ● Similar layout to FCGI, but optimized ● Can run suEXEC
  • 18. LSAPI Optimizations ● Utilizes web server request parsing results for less overhead ● Persistent processes dynamically forked to save resources ● Different modes of process handling for different needs ● Allows per-directory configuration overrides
  • 20. Three benchmarks 1. LSWS vs. NGINX for small PHP scripts (new and unreleased) 1. LSWS vs. OpenLiteSpeed vs. Apache vs. NGINX for small PHP scripts (previously published) 1. LSWS vs. Apache for WordPress (presented by cPanel at cPanel Conference 2014, measured speed and resource usage)
  • 21. Benchmark 1 LSWS vs. NGINX for small PHP scripts (new)
  • 22. Setup Server: ● Intel Xeon E5-1620 Quad Core @ 3.60GHz ● 8GB RAM Configs mostly defaults with small amount of optimization for NGINX. Full configs will be released on our site. AB: ab_new -n 50000 -c 100
  • 23. Benchmark 1 results (no keep alive)
  • 24. Benchmark 1 results (keep alive)
  • 25. Benchmark 1 takeaways LSWS outperformed NGINX: ● by 26% with keep alive connections off ● by 91% with keep alive connections on
  • 26. Benchmark 2 LSWS vs. OpenLiteSpeed vs. Apache vs. NGINX for small PHP scripts (previously published)
  • 27. Setup Server: ● Intel Xeon E5-1620 Quad Core @ 3.60GHz (limited to 1 core) ● 8GB RAM Configs mostly defaults. Full configs can be found on our site. AB: ab_new -n 50000 -c 100
  • 28. Benchmark 2 results (no keep alive)
  • 29. Benchmark 2 results (keep alive)
  • 30. Benchmark 2 takeaways ● LSWS and OpenLiteSpeed outperformed all others ● Difference between LSWS and NGINX preserved ● Apache 2.2 with mod_PHP next fastest (about 50% slower than LSWS) ● LSAPI makes a 15-20% difference ● All web servers did better with keep-alive on
  • 31. Benchmark 3 LSWS vs. Apache for WordPress (courtesy of Tristan Wallace, cPanel)
  • 32. Setup VPS: ● 1 core ● 1GB RAM Dedicated server: ● 4 cores ● 8GB RAM
  • 36. Benchmark 3 takeaways ● Speed difference shown again, even with other applications ● Resource advantage of event-driven architecture (VPSs with Apache couldn't even handle 50 concurrent connections) ● Resource advantage of LSAPI
  • 37. Benchmark Wrapup What have we learned?
  • 38. What happened? ● Basically, LSWS and OpenLiteSpeed beat all comers by at least 25% ● The difference was most pronounced vs. Apache setups that use suEXEC
  • 39. Why? ● LSAPI is optimized ● LSWS is built for performance and geared especially for performance with LSAPI
  • 40. Debate? If you wish to debate these benchmarks, please contact me or post to our forum. We are happy to try different settings if there is good reason to believe they will make a difference. Forum: http://www.litespeedtech.com/support/forum/ Me: [email protected]
  • 41. LSAPI What can you do with it?
  • 42. LiteSpeed Server API ● API for communication with an application backend ● Open source ● Designed specifically for LSWS (for better integration) ● Highly optimized by default ● Offers three different modes of handling PHP processes for different needs ● Allows for high-performance suEXEC setups ● Available for PHP, Ruby, and Python http://www.litespeedtech.com/products/litespeed-sapi/php
  • 43. LSAPI PHP Modes 1.Worker 2. Daemon 3. ProcessGroup All can be suEXEC
  • 44. Worker Mode ● Default mode ● Similar to PHP with CGI ● New process each time PHP is needed ● Creating new processes has overhead ● Can save resources because there are no more processes than needed ● No effective suEXEC opcode caching
  • 45. Daemon Mode ● Forks all processes from a persistent parent process (even in suEXEC) ● Spawning child processes is faster than creating new processes ● Allows for somewhat more effective suEXEC opcode caching
  • 46. Setting up Daemon Mode WebAdmin console > Configuration > External App > your LSPHP external application: 1. Set Auto Start to "Yes". 2. Set Run On Start Up to "suEXEC Daemon".
  • 47. ProcessGroup Mode ● Similar to PHP-FPM pools (except easy to set up) ● Really only for suEXEC settings ● One parent process for each user ● Parent process spawns child processes on demand ● Spawning child processes is faster than creating new processes ● Allows for per-user opcode caching in a suEXEC setting ● Extra parent processes consume extra resources ● Not available for OpenLiteSpeed
  • 48. Setting up PHP ProcessGroup Add the following to an Apache configuration file: <IfModule LiteSpeed> LSPHP_ProcessGroup on LSPHP_Workers 15 </IfModule>
  • 49. Future improvements to LSAPI ● Event-driven PHP processing ● HHVM integration
  • 51. Conclusions ● LSWS and OpenLiteSpeed serve PHP 25- 100% faster than other major web servers ● Partly due to LSAPI's optimization ● Partly due to LSWS and OpenLiteSpeed's optimized integration with LSAPI
  • 52. Conclusions (LSAPI) ● LSAPI = faster PHP ● LSAPI's suEXEC implementation allows for speed and security ● LSAPI modes and config overrides allow easy configuration for different uses ● Opcode caching even with suEXEC