SlideShare a Scribd company logo
Common Optimization
    Mistakes
  Dutch PHP Conference 2010

       Ilia Alshanetsky
         http://ilia.ws




                              1
Premature
               =
Optimization

Solve the business case,
 before optimizing the
        solution

                           2
Don’t Over Engineer

• Understand your audience
• Estimate the scale and growth of your
  application (based on facts, not
  marketing fiction)
• Keep timelines in mind when setting
  the project scope


                                          3
Simplify, Simplify &
      Simplify!
• Break complex tasks into simpler sub-
  components
• Don’t be afraid to modularize the code
• More code does not translate to slower
  code (common misconception)
  PHP has grown from less than 1 million LOC to over 2 million LOC
  since 2000 and has become at least 4 times faster.
  Linux kernel code base increase by 40% since 2005 and still
  managed to improve performance by roughly the same margin.
                                          LOC stats came from ohloh.net

                                                                          4
Hardware is Cheaper!


                  VS



  In most cases applications can gain vast
 performance gains by improving hardware,
quickly rather than through slow, error prone
          code optimization efforts.
                                                5
Hardware
• CPU bottlenecks can be resolved by
  more cores and/or CPUs. Typically
  each year yields a 20-30% speed
  improvement over past year’s CPU
  speeds.
• Ability to handle large amounts of
  traffic is often hampered by limited
  RAM, and thanks to 64bit, each new
  server can have tons of it.
                                        6
Hardware
• Drives are often the
  most common
  bottleneck,            SSD
  fortunately between
  RAID and Solid State
  you can solve that
  pretty easily now a
                         SCSI
  days.

                                7
Hardware Caveat
• While quick to give results, in some
  situations it will not help for long:
 • Database saturation
 • Non-scalable code base
 • Network bound bottleneck
 • Extremely low number sessions per
   server

                                          8
Optimize, but don’t
  touch the code
• Typically introduces substantial
  efficiencies
• Does not endanger code integrity
• Usually simple and quick to deploy
• In the event of problems, often simple
  to revert

                                           9
How PHP works in 30 seconds
            PHP Script                   • This cycle happens
                                           for every include
                                           file, not just for the
           Zend Compile                    "main" script.



           Zend Execute                    ire
                                    re   qu
                                  /
                           lude
                     in   c
                                         • Compilation can
                @
method                                     easily consume
function                                   more time than
  call                                     execution.
                                                                   10
Opcode Cache
• Each PHP script is interpreted only once for
  each revision.
• Reduced File IO, opcodes are being read from
  memory instead of being parsed from disk.
• Opcodes can optimized for faster execution.
• Yields a minimum 20-30% speed improvement
  and often as much as 200-400%


                                                 11
Quick Comparison
200
                                  Regular PHP
                                  Zend Platform
150
                                  APC
                                  X-Cache

100


 50


  0
 FUDforum   Smarty   phpMyAdmin

                                                  12
Use In-Memory Caches
• In-memory session storage is MUCH
  faster than disk or database equivalents.
 • Very simple via memcache extension
        session.save_handler = “memcache”
        session.save_path = “tcp://localhost:11211”


    Also allows scaling across multiple
    servers for improved reliability and
    performance.

                                                      13
Everything has to be
     Real-time




                       14
Complete Page Caching


 • Caching Proxy (Ex. Squid)
 • Page pre-generation
 • On-demand caching




                               15
Partial Cache - SQL
• In most applications the primary
  bottleneck can often be traced to
  “database work”.


• Caching of SQL can drastically reduce
  the load caused by unavoidable,
  complex queries.


                                          16
SQL Caching Example

$key = md5(“some sort of sql query”);
if (!($result = memcache_get($key))) {
  $result = $pdo->query($qry)->fetchAll();
  // cache query result for 1 hour
  memcache_set($key, $result, NULL, 3600);
}



                                             17
Partial Cache - Code
• Rather than optimizing complex PHP
  operations, it is often better to simply
  cache their output for a period of time.
 • Faster payoff
 • Lower chance of breaking the code
 • Faster then any “code optimization”


                                             18
Code Caching Example
function myFunction($a, $b, $c) {
  $key = __FUNCTION__ . serialize(func_get_args());
  if (!($result = memcache_get($key))) {
    $result = // function code
    // cache query result for 1 hour
    memcache_set($key, $result, NULL, 3600);
  }
  return $result;
}

                                                      19
Compile Your Tools

• Distribution binaries suck!


• More often than not you can realize
  10-15% speed increase by compiling
  your own Apache/PHP/Database from
  source. (unless you are using Gentoo)



                                          20
Output Buffering


• Don’t fear output buffering because it
  uses ram, ram is cheap. IO, not so
  much.




                                           21
Matching Your IO Sizes

  PHP          Apache           OS           Client



• The goal is to pass off as much work to the kernel
  as efficiently as possible.
• Optimizes PHP to OS Communication
• Reduces Number Of System Calls

                         22
                                                       22
PHP: Output Control

• Efficient
                           PHP         Apache
• Flexible
• In your script, with ob_start()
• Everywhere, with output_buffering = Xkb
• Improves browser’s rendering speed


                      23
                                                23
Apache: Output Control

• The idea is to hand off entire page to the
  kernel without blocking.

            Apache            OS

• Set SendBufferSize = PageSize




                                               24
OS: Output Control
OS (Linux)
                                 OS     Client

/proc/sys/net/ipv4/tcp_wmem
4096      16384      maxcontentsize
min        default         max


/proc/sys/net/ipv4/tcp_mem
(maxcontentsize * maxclients) / pagesize


✴   Be careful on low memory systems!
                                                 25
Upgrade Your PHP
• Before “upgrading” your code, upgrade
  your PHP. Newer versions are typically
  faster!
         150


        112.5
                                                 PHP 4.4
                                                 PHP 5.0
          75                                     PHP 5.1
                                                 PHP 5.2
         37.5                                    PHP 5.3
                                                 PHP-CSV

           0
                Speed % (base line of PHP 4.4)

                                                           26
Don’t Assume
Assume nothing,
profile everything!   • One of the most
                       common mistakes made
                       even by experienced
                       developers is starting to
                       optimize code without
                       identifying the
                       bottleneck first.


                                                   27
Profile, Profile & Profile


 Xdebug and XHProf extensions provide
 a very helpful mechanism for identifying
 TRUE bottlenecks in your code.




                                            28
Kcachegrind




Xdebug provides kcachegrind analyzable output that offers
  an easy visual overview of your performance problems
                                                            29
Database before code

• One of the most common mistakes
  people make is optimizing code before
  even looking at the database.


• Vast majority of applications have the
  bottleneck in the database not the code!


                                             30
Watch Your Errors

• Excessive, non-critical errors, such as
  E_NOTICE or E_STRICT can only be
  detected via error-logging.


• PHP code that generates any errors is
  going to impact performance!

    Not Easily Detectable by Profilers
                                            31
Micro Optimization

• Takes a long time
• Won’t solve your performance issues
• Almost guaranteed to break something
• Cost > Reward



                                         32
Speed vs Scale
• If you are planning for growth, scale is
  far more important than speed!



• Focus on scalability rather than speed,
  you can always increase scalable app,
  by simply adding more hardware.


                                             33
Don’t Re-invent the Wheel

          • Most attempts to
            make “faster”
            versions of native
            PHP functions using
            PHP code are silly
            exercises in futility.



                                     34
Write Only Code
• Removing comments won’t make code
  faster
• Neither will removal of whitespace
• Remember, you may need to debug that
  mess at some point ;-)
• Shorter code != Faster Code


                                         35
Thank You!
     Any Questions?



  Slides @ www.ilia.ws
Comments @ joind.in/1535

                           36

More Related Content

PPTX
Getting started with PHP on IBM i
PDF
Zend Server: A Guided Tour
PDF
Running open source PHP applications on you IBM i
PDF
Tiery Eyed
PDF
Performance tuning with zend framework
PPTX
PHP Installed on IBM i - the Nickel Tour
PPTX
Install MariaDB on IBM i - Tips, troubleshooting, and more
PDF
DB2 and PHP in Depth on IBM i
Getting started with PHP on IBM i
Zend Server: A Guided Tour
Running open source PHP applications on you IBM i
Tiery Eyed
Performance tuning with zend framework
PHP Installed on IBM i - the Nickel Tour
Install MariaDB on IBM i - Tips, troubleshooting, and more
DB2 and PHP in Depth on IBM i

What's hot (20)

ODP
Improving PHP Application Performance with APC
PDF
Caching with Memcached and APC
PPTX
Fundamentals of performance tuning PHP on IBM i
PDF
Strategic Modernization with PHP on IBM i
PDF
PHP Toolkit from Zend and IBM: Open Source on IBM i
PPTX
PHP Performance with APC + Memcached
PPTX
Magento on HHVM. Daniel Sloof
PDF
/* pOrt80BKK */ - PHP Day - PHP Performance with APC + Memcached for Windows
PDF
Create a welcoming development environment on IBM i
ODP
Apc presentation
PPTX
Zend Products and PHP for IBMi
PDF
Getting started with PHP on IBM i
PDF
Os Lamothe
PDF
PHP Batch Jobs on IBM i
PDF
What's new with Zend server
PDF
From Zero to ZF: Your first zend framework project on ibm i
PPTX
PHP on IBM i Tutorial
PDF
Ndp Slides
PDF
Configuration manager presentation
KEY
CakePHP 2.0 - PHP Matsuri 2011
Improving PHP Application Performance with APC
Caching with Memcached and APC
Fundamentals of performance tuning PHP on IBM i
Strategic Modernization with PHP on IBM i
PHP Toolkit from Zend and IBM: Open Source on IBM i
PHP Performance with APC + Memcached
Magento on HHVM. Daniel Sloof
/* pOrt80BKK */ - PHP Day - PHP Performance with APC + Memcached for Windows
Create a welcoming development environment on IBM i
Apc presentation
Zend Products and PHP for IBMi
Getting started with PHP on IBM i
Os Lamothe
PHP Batch Jobs on IBM i
What's new with Zend server
From Zero to ZF: Your first zend framework project on ibm i
PHP on IBM i Tutorial
Ndp Slides
Configuration manager presentation
CakePHP 2.0 - PHP Matsuri 2011
Ad

Similar to Dutch php conference_2010_opm (20)

PPTX
Northeast PHP - High Performance PHP
PDF
PHP & Performance
PPTX
BTV PHP - Building Fast Websites
PPTX
Web Performance, Scalability, and Testing Techniques - Boston PHP Meetup
PDF
2013 - Dustin whittle - Escalando PHP en la vida real
PDF
Php go vrooom!
PPT
Scaling Web Apps P Falcone
PPT
scale_perf_best_practices
PDF
Top ten-list
PDF
php & performance
PPT
Top 10 Scalability Mistakes
PDF
Framework and Application Benchmarking
PDF
Profiling PHP with Xdebug / Webgrind
PDF
Bottom to Top Stack Optimization with LAMP
PDF
Bottom to Top Stack Optimization - CICON2011
PPT
Apache Con 2008 Top 10 Mistakes
PPT
Top 30 Scalability Mistakes
PDF
Performance scalability brandonlyon
PDF
Optimizing WordPress for Performance - WordCamp Houston
PDF
Professional PHP: an open-source alternative for enterprise development [Kort...
Northeast PHP - High Performance PHP
PHP & Performance
BTV PHP - Building Fast Websites
Web Performance, Scalability, and Testing Techniques - Boston PHP Meetup
2013 - Dustin whittle - Escalando PHP en la vida real
Php go vrooom!
Scaling Web Apps P Falcone
scale_perf_best_practices
Top ten-list
php & performance
Top 10 Scalability Mistakes
Framework and Application Benchmarking
Profiling PHP with Xdebug / Webgrind
Bottom to Top Stack Optimization with LAMP
Bottom to Top Stack Optimization - CICON2011
Apache Con 2008 Top 10 Mistakes
Top 30 Scalability Mistakes
Performance scalability brandonlyon
Optimizing WordPress for Performance - WordCamp Houston
Professional PHP: an open-source alternative for enterprise development [Kort...
Ad

More from isnull (20)

PPT
站点报告模板
PDF
My sql数据库开发的三十六条军规
PPTX
基于Web的项目管理工具redmine
PDF
雷志兴 百度前端基础平台与架构分享
PPT
张勇 搜搜前端架构
PDF
张克军 豆瓣前端团队的工作方式
PPT
杨皓 新浪博客前端架构分享
PDF
Barcelona apc mem2010
PPT
Mysql introduction-and-performance-optimization
PDF
Designofhtml5
PDF
Mysql开发与优化
PDF
我的Ubuntu之旅
PPT
软件工程&架构
PPT
淘宝分布式数据处理实践
PPT
阿里巴巴 招聘技巧培训
PPT
Scrum
PPT
Scrum
PPT
183银行服务器下载说明
PPT
人人网技术经理张铁安 Feed系统结构浅析
PDF
Data on the web
站点报告模板
My sql数据库开发的三十六条军规
基于Web的项目管理工具redmine
雷志兴 百度前端基础平台与架构分享
张勇 搜搜前端架构
张克军 豆瓣前端团队的工作方式
杨皓 新浪博客前端架构分享
Barcelona apc mem2010
Mysql introduction-and-performance-optimization
Designofhtml5
Mysql开发与优化
我的Ubuntu之旅
软件工程&架构
淘宝分布式数据处理实践
阿里巴巴 招聘技巧培训
Scrum
Scrum
183银行服务器下载说明
人人网技术经理张铁安 Feed系统结构浅析
Data on the web

Recently uploaded (20)

PDF
Modernizing your data center with Dell and AMD
PPTX
Cloud computing and distributed systems.
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
KodekX | Application Modernization Development
PPTX
Big Data Technologies - Introduction.pptx
PDF
Approach and Philosophy of On baking technology
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Encapsulation theory and applications.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPT
Teaching material agriculture food technology
Modernizing your data center with Dell and AMD
Cloud computing and distributed systems.
Spectral efficient network and resource selection model in 5G networks
Unlocking AI with Model Context Protocol (MCP)
Building Integrated photovoltaic BIPV_UPV.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Diabetes mellitus diagnosis method based random forest with bat algorithm
The AUB Centre for AI in Media Proposal.docx
Reach Out and Touch Someone: Haptics and Empathic Computing
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
CIFDAQ's Market Insight: SEC Turns Pro Crypto
20250228 LYD VKU AI Blended-Learning.pptx
KodekX | Application Modernization Development
Big Data Technologies - Introduction.pptx
Approach and Philosophy of On baking technology
The Rise and Fall of 3GPP – Time for a Sabbatical?
Encapsulation theory and applications.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Teaching material agriculture food technology

Dutch php conference_2010_opm

  • 1. Common Optimization Mistakes Dutch PHP Conference 2010 Ilia Alshanetsky http://ilia.ws 1
  • 2. Premature = Optimization Solve the business case, before optimizing the solution 2
  • 3. Don’t Over Engineer • Understand your audience • Estimate the scale and growth of your application (based on facts, not marketing fiction) • Keep timelines in mind when setting the project scope 3
  • 4. Simplify, Simplify & Simplify! • Break complex tasks into simpler sub- components • Don’t be afraid to modularize the code • More code does not translate to slower code (common misconception) PHP has grown from less than 1 million LOC to over 2 million LOC since 2000 and has become at least 4 times faster. Linux kernel code base increase by 40% since 2005 and still managed to improve performance by roughly the same margin. LOC stats came from ohloh.net 4
  • 5. Hardware is Cheaper! VS In most cases applications can gain vast performance gains by improving hardware, quickly rather than through slow, error prone code optimization efforts. 5
  • 6. Hardware • CPU bottlenecks can be resolved by more cores and/or CPUs. Typically each year yields a 20-30% speed improvement over past year’s CPU speeds. • Ability to handle large amounts of traffic is often hampered by limited RAM, and thanks to 64bit, each new server can have tons of it. 6
  • 7. Hardware • Drives are often the most common bottleneck, SSD fortunately between RAID and Solid State you can solve that pretty easily now a SCSI days. 7
  • 8. Hardware Caveat • While quick to give results, in some situations it will not help for long: • Database saturation • Non-scalable code base • Network bound bottleneck • Extremely low number sessions per server 8
  • 9. Optimize, but don’t touch the code • Typically introduces substantial efficiencies • Does not endanger code integrity • Usually simple and quick to deploy • In the event of problems, often simple to revert 9
  • 10. How PHP works in 30 seconds PHP Script • This cycle happens for every include file, not just for the Zend Compile "main" script. Zend Execute ire re qu / lude in c • Compilation can @ method easily consume function more time than call execution. 10
  • 11. Opcode Cache • Each PHP script is interpreted only once for each revision. • Reduced File IO, opcodes are being read from memory instead of being parsed from disk. • Opcodes can optimized for faster execution. • Yields a minimum 20-30% speed improvement and often as much as 200-400% 11
  • 12. Quick Comparison 200 Regular PHP Zend Platform 150 APC X-Cache 100 50 0 FUDforum Smarty phpMyAdmin 12
  • 13. Use In-Memory Caches • In-memory session storage is MUCH faster than disk or database equivalents. • Very simple via memcache extension session.save_handler = “memcache” session.save_path = “tcp://localhost:11211” Also allows scaling across multiple servers for improved reliability and performance. 13
  • 14. Everything has to be Real-time 14
  • 15. Complete Page Caching • Caching Proxy (Ex. Squid) • Page pre-generation • On-demand caching 15
  • 16. Partial Cache - SQL • In most applications the primary bottleneck can often be traced to “database work”. • Caching of SQL can drastically reduce the load caused by unavoidable, complex queries. 16
  • 17. SQL Caching Example $key = md5(“some sort of sql query”); if (!($result = memcache_get($key))) { $result = $pdo->query($qry)->fetchAll(); // cache query result for 1 hour memcache_set($key, $result, NULL, 3600); } 17
  • 18. Partial Cache - Code • Rather than optimizing complex PHP operations, it is often better to simply cache their output for a period of time. • Faster payoff • Lower chance of breaking the code • Faster then any “code optimization” 18
  • 19. Code Caching Example function myFunction($a, $b, $c) { $key = __FUNCTION__ . serialize(func_get_args()); if (!($result = memcache_get($key))) { $result = // function code // cache query result for 1 hour memcache_set($key, $result, NULL, 3600); } return $result; } 19
  • 20. Compile Your Tools • Distribution binaries suck! • More often than not you can realize 10-15% speed increase by compiling your own Apache/PHP/Database from source. (unless you are using Gentoo) 20
  • 21. Output Buffering • Don’t fear output buffering because it uses ram, ram is cheap. IO, not so much. 21
  • 22. Matching Your IO Sizes PHP Apache OS Client • The goal is to pass off as much work to the kernel as efficiently as possible. • Optimizes PHP to OS Communication • Reduces Number Of System Calls 22 22
  • 23. PHP: Output Control • Efficient PHP Apache • Flexible • In your script, with ob_start() • Everywhere, with output_buffering = Xkb • Improves browser’s rendering speed 23 23
  • 24. Apache: Output Control • The idea is to hand off entire page to the kernel without blocking. Apache OS • Set SendBufferSize = PageSize 24
  • 25. OS: Output Control OS (Linux) OS Client /proc/sys/net/ipv4/tcp_wmem 4096 16384 maxcontentsize min default max /proc/sys/net/ipv4/tcp_mem (maxcontentsize * maxclients) / pagesize ✴ Be careful on low memory systems! 25
  • 26. Upgrade Your PHP • Before “upgrading” your code, upgrade your PHP. Newer versions are typically faster! 150 112.5 PHP 4.4 PHP 5.0 75 PHP 5.1 PHP 5.2 37.5 PHP 5.3 PHP-CSV 0 Speed % (base line of PHP 4.4) 26
  • 27. Don’t Assume Assume nothing, profile everything! • One of the most common mistakes made even by experienced developers is starting to optimize code without identifying the bottleneck first. 27
  • 28. Profile, Profile & Profile Xdebug and XHProf extensions provide a very helpful mechanism for identifying TRUE bottlenecks in your code. 28
  • 29. Kcachegrind Xdebug provides kcachegrind analyzable output that offers an easy visual overview of your performance problems 29
  • 30. Database before code • One of the most common mistakes people make is optimizing code before even looking at the database. • Vast majority of applications have the bottleneck in the database not the code! 30
  • 31. Watch Your Errors • Excessive, non-critical errors, such as E_NOTICE or E_STRICT can only be detected via error-logging. • PHP code that generates any errors is going to impact performance! Not Easily Detectable by Profilers 31
  • 32. Micro Optimization • Takes a long time • Won’t solve your performance issues • Almost guaranteed to break something • Cost > Reward 32
  • 33. Speed vs Scale • If you are planning for growth, scale is far more important than speed! • Focus on scalability rather than speed, you can always increase scalable app, by simply adding more hardware. 33
  • 34. Don’t Re-invent the Wheel • Most attempts to make “faster” versions of native PHP functions using PHP code are silly exercises in futility. 34
  • 35. Write Only Code • Removing comments won’t make code faster • Neither will removal of whitespace • Remember, you may need to debug that mess at some point ;-) • Shorter code != Faster Code 35
  • 36. Thank You! Any Questions? Slides @ www.ilia.ws Comments @ joind.in/1535 36