SlideShare uma empresa Scribd logo
1 de 28
Steve Kamerman | ScientiaMobile, Inc.
Co-Founder / Software Architect

High-Performance PHP with HipHop
2008 - Facebook's Challenge
●

Explosive growth

●

Need more servers!

●

Bottleneck: Page generation

●

20% of PHP time was in native code
Why is PHP so slow?
●

Symbol table lookups

●

No static binding

●

Dynamic typing

●

Share-Nothing-Architecture
2008-2010 – HipHop for PHP is born
●

400 Billion PHP-generated pageviews per
month!

●

Facebook invents HipHop for PHP

●

Deployed system-wide in 2010
HipHop for PHP

Research &
Development

HPHPc

HHVM
What is HipHop for PHP?
• Multi-threaded web server + PHP runtime
• HPHPc: PHP -> C++ translator
• HHVM: PHP virtual machine with JIT
compiler
• Typically 2x – 5x speed increase over stock
PHP + APC
HipHop for PHP Compiler (HPHPc)
●

Translates PHP code into C++

●

Dynamic typing makes this difficult

●

Function parity lacking

●

Long compilation time
Our Experience
●

Created WURFL Cloud REST API

●

Evaluated HPHPc

●

Improved Latency

●

Stability issues
Architecture
Internet

HAProxy
Load Balancer
(primary)

WURFL Node
HPHPc

Apache

WURFL Node
HPHPc

Apache

HAProxy
Load Balancer
(secondary)

WURFL Node
HPHPc

Apache

WURFL Node
HPHPc

Apache

Memcached

Memcached

Memcached

Memcached

MySQL

MySQL

MySQL

MySQL
Codebase Updates

http://www.github.com/kamermans/HAProxyAPI
Next-Gen HipHop: HHVM
●

Virtual Machine

●

Better PHP Support

●

JIT Compiler

●

Bytecode Survives Restart
How HHVM works
Internet

HHV
M

Web Server

Run Native
Code
Run Bytecode
Generate
Bytecode

JIT Compile
HHVM vs HPHPc Performance

http://www.hhvm.com/blog/875/wow-hhvm-is-fast-too-bad-it-doesnt-run-my-code
https://github.com/facebook/hhvm/blob/master/hphp/doc/ir.specification
Optimizing PHP for HHVM
●

Type Inference
–

PHP Gotcha: core function fail with (bool)false

●

HHVM Upgrades primitives

●

Use strict comparison
Don't care about type strict comparison?
You should. Trust me.
var_export("true" == true); // true  
var_export("false" == true); // true  
var_export("true" == (bool)"false"); // true
var_export(strpos("Steve Kamerman", "Kamerman") == true); // true  
var_export(strpos("Steve Kamerman", "Steve") == true); // false  
$test = "31 is too old!";
var_export(31 == $test); // true
var_export("31.0" == 31); // true
var_export("031" == 031); // false
var_export(31.0 == 31); // true
var_export($test += 1); // 32
Avoid global scope
●

●

Code in the global scope is interpreted since it
is (nearly) impossible to type-track
Even wrapping global code helps:
class foo{public static function bar(){
$something = "test";
echo $something;
}}foo::bar();

●

Better approach: don’t write crappy code!
Unique Classes, Functions, Constants
●

HHVM supports namespaces – use them!

●

MyAppBar and MyAppFooBar are not ambiguous

●

●

●

Avoid “dynamic” constants:
define("MY_CONST", $foo? "foo": "bar");
I can almost picture a feature request for
undefine() and redefine()
If they are truly constant, use const
Better approach: don't use define()
namespace MyApp;
class Config {
const MY_CONST = "I'm real constant";
private static $storage = array(
"PSEUDO_CONSTANT" => "What did you call me?",
);
public static function get($name) {
if (!array_key_exists($name, self::$storage)) {
throw new Exception(__CLASS__." property [$name] does
not exist");
}
return self::$storage[$name];
}
}
echo Config::MY_CONST."n";
Avoid dynamic variables
●

If you are using this syntax, there is a better way to solve
the problem:
$foo = "Wow, this hurts my brain!";
$var_name = "foo";
echo $$var_name;

●

●

extract() and compact() are sometimes used more
legitimately (ex: view rendering), but avoid them
If you need get_defined_vars() for non-testing code,
you need to rewrite it before someone sees it :)
Declare class properties
●

They should be declared anyway
$foo = new stdClass();
echo $foo->bar; // PHP Notice: Undefined
property

●

Getters are optimized
Perfomance Gain
●
●

Less than 5%, but still good practice
Sub-optimal functions still work, even
eval() and goto!

http://php.net/manual/en/control-structures.goto.php
Repo.Authoritative Mode
●

Pre-Analyze files

●

PHP files assumed unchanged

●

Delete cache manually
Current state of HipHop
●

HHVM v2.2.0 just released

●

Very close to PHP 5.4

●

Dozens of extensions

●

Performance nearly 5x

●

Goal: Support top 20 frameworks in 2013
Framework Support
Framework % Unit Tests Pass

Framework % Unit Tests Pass

Facebook PHP SDK 100

CodeIgniter 81

Paris9 100

Assetic 80

Idiorm9 100

Twig 78

Slim 99

Wordpress 76

Drupal 98

phpBB 0

Composer 97

CakePHP 0

Laravel 95

Joomla 0

yii 92

PHPMyAdmin 0

Symfony 91

zf2 0

PHPUnit2 90

Doctrine 0
Magento 0

http://www.hhvm.com/blog/875/wow-hhvm-is-fast-too-bad-it-doesnt-run-my-code
Why is it open source? Will it last?
●

Under PHP license, hard to separate

●

Public activity slowed in 2011

●

Under active public development in 2012-13

●

Dev team is active on IRC (freenode #hhvm)
Facebook's Commitment

“In years past we've had a few examples of projects which have not
been well supported, but we are now much better at growing and
sustaining community projects, including, lately, in mobile.
[HipHop for PHP] is absolutely a project that we stand strongly
behind… stay tuned.”
James Pearce, Head of Developer Advocacy at Facebook
References
●

●

●

●

●

Special thanks to the HipHop for PHP team!
https://www.facebook.com/hphp
Twitter: @HipHopVM
http://www.hhvm.com/
Sebastian Bergmann – Static Code Analysis with HipHop
http://sebastian-bergmann.de/archives/918-Static-Analysis-with-HipHop-for-PHP.html
http://www.slideshare.net/nickgsuperstar/static-analysis-for-php
https://github.com/sebastianbergmann/hhvm-wrapper
Haiping Zhao – HipHop Compiler for PHP? Transforming PHP into C++
http://www.youtube.com/watch?v=p5S1K60mhQU
Sara Golemon – Scaling with HipHop
http://www.youtube.com/watch?v=Dwek7dZDFN0
Ben Foster – Facebook Growth Data
http://www.benphoster.com/facebook-user-growth-chart-2004-2010/

Mais conteúdo relacionado

Mais procurados

Patterns: The new Javascript framweork
Patterns: The new Javascript framweorkPatterns: The new Javascript framweork
Patterns: The new Javascript framweorkFranco Pellegrini
 
Frankfurt TYPO3 User Group (FTUG) 2017.11.15
Frankfurt TYPO3 User Group (FTUG) 2017.11.15Frankfurt TYPO3 User Group (FTUG) 2017.11.15
Frankfurt TYPO3 User Group (FTUG) 2017.11.15ManuelSelbach
 
Symfony ile Gelişmiş API Mimarisi
Symfony ile Gelişmiş API MimarisiSymfony ile Gelişmiş API Mimarisi
Symfony ile Gelişmiş API MimarisiBehram ÇELEN
 
Error handling in visual fox pro 9
Error handling in visual fox pro 9Error handling in visual fox pro 9
Error handling in visual fox pro 9Mike Feltman
 
KAK Etkinliği OJS de Symfony kullanımı
KAK Etkinliği OJS de Symfony kullanımıKAK Etkinliği OJS de Symfony kullanımı
KAK Etkinliği OJS de Symfony kullanımıBehram Çelen
 
FuelPHP - a PHP HMVC Framework by silicongulf.com
FuelPHP - a PHP HMVC Framework by silicongulf.comFuelPHP - a PHP HMVC Framework by silicongulf.com
FuelPHP - a PHP HMVC Framework by silicongulf.comChristopher Cubos
 
TAKING PHP SERIOUSLY - Keith Adams
TAKING PHP SERIOUSLY - Keith AdamsTAKING PHP SERIOUSLY - Keith Adams
TAKING PHP SERIOUSLY - Keith AdamsHermes Alves
 
FuelPHP presentation - PeoplePerHour workshop
FuelPHP presentation - PeoplePerHour workshopFuelPHP presentation - PeoplePerHour workshop
FuelPHP presentation - PeoplePerHour workshopFotis Alexandrou
 
mod_php vs FastCGI vs FPM vs CLI
mod_php vs FastCGI vs FPM vs CLImod_php vs FastCGI vs FPM vs CLI
mod_php vs FastCGI vs FPM vs CLIJacques Woodcock
 
Laravel Nova: czy to się w ogóle opłaca?
Laravel Nova: czy to się w ogóle opłaca?Laravel Nova: czy to się w ogóle opłaca?
Laravel Nova: czy to się w ogóle opłaca?Laravel Poland MeetUp
 
PHPUnit Automated Unit Testing Framework
PHPUnit Automated Unit Testing FrameworkPHPUnit Automated Unit Testing Framework
PHPUnit Automated Unit Testing FrameworkDave Ross
 
Myphp-busters: symfony framework (PHPCon.it)
Myphp-busters: symfony framework (PHPCon.it)Myphp-busters: symfony framework (PHPCon.it)
Myphp-busters: symfony framework (PHPCon.it)Stefan Koopmanschap
 
Myphp-busters: symfony framework
Myphp-busters: symfony frameworkMyphp-busters: symfony framework
Myphp-busters: symfony frameworkStefan Koopmanschap
 

Mais procurados (20)

Patterns: The new Javascript framweork
Patterns: The new Javascript framweorkPatterns: The new Javascript framweork
Patterns: The new Javascript framweork
 
Erjang
ErjangErjang
Erjang
 
Clojure presentation
Clojure presentationClojure presentation
Clojure presentation
 
Frankfurt TYPO3 User Group (FTUG) 2017.11.15
Frankfurt TYPO3 User Group (FTUG) 2017.11.15Frankfurt TYPO3 User Group (FTUG) 2017.11.15
Frankfurt TYPO3 User Group (FTUG) 2017.11.15
 
Developing better PHP projects
Developing better PHP projectsDeveloping better PHP projects
Developing better PHP projects
 
Symfony ile Gelişmiş API Mimarisi
Symfony ile Gelişmiş API MimarisiSymfony ile Gelişmiş API Mimarisi
Symfony ile Gelişmiş API Mimarisi
 
Error handling in visual fox pro 9
Error handling in visual fox pro 9Error handling in visual fox pro 9
Error handling in visual fox pro 9
 
KAK Etkinliği OJS de Symfony kullanımı
KAK Etkinliği OJS de Symfony kullanımıKAK Etkinliği OJS de Symfony kullanımı
KAK Etkinliği OJS de Symfony kullanımı
 
FuelPHP - a PHP HMVC Framework by silicongulf.com
FuelPHP - a PHP HMVC Framework by silicongulf.comFuelPHP - a PHP HMVC Framework by silicongulf.com
FuelPHP - a PHP HMVC Framework by silicongulf.com
 
Xml4js pentaho
Xml4js pentahoXml4js pentaho
Xml4js pentaho
 
The PHP Renaissance
The PHP RenaissanceThe PHP Renaissance
The PHP Renaissance
 
TAKING PHP SERIOUSLY - Keith Adams
TAKING PHP SERIOUSLY - Keith AdamsTAKING PHP SERIOUSLY - Keith Adams
TAKING PHP SERIOUSLY - Keith Adams
 
FuelPHP presentation - PeoplePerHour workshop
FuelPHP presentation - PeoplePerHour workshopFuelPHP presentation - PeoplePerHour workshop
FuelPHP presentation - PeoplePerHour workshop
 
FuelPHP
FuelPHPFuelPHP
FuelPHP
 
mod_php vs FastCGI vs FPM vs CLI
mod_php vs FastCGI vs FPM vs CLImod_php vs FastCGI vs FPM vs CLI
mod_php vs FastCGI vs FPM vs CLI
 
Laravel Nova: czy to się w ogóle opłaca?
Laravel Nova: czy to się w ogóle opłaca?Laravel Nova: czy to się w ogóle opłaca?
Laravel Nova: czy to się w ogóle opłaca?
 
PHPUnit Automated Unit Testing Framework
PHPUnit Automated Unit Testing FrameworkPHPUnit Automated Unit Testing Framework
PHPUnit Automated Unit Testing Framework
 
Phalcon overview
Phalcon overviewPhalcon overview
Phalcon overview
 
Myphp-busters: symfony framework (PHPCon.it)
Myphp-busters: symfony framework (PHPCon.it)Myphp-busters: symfony framework (PHPCon.it)
Myphp-busters: symfony framework (PHPCon.it)
 
Myphp-busters: symfony framework
Myphp-busters: symfony frameworkMyphp-busters: symfony framework
Myphp-busters: symfony framework
 

Destaque

HipHop VM: overclocking Symfony
HipHop VM: overclocking SymfonyHipHop VM: overclocking Symfony
HipHop VM: overclocking SymfonyVadim Borodavko
 
PHP Unit y TDD
PHP Unit y TDDPHP Unit y TDD
PHP Unit y TDDEmergya
 
Automated php unit testing in drupal 8
Automated php unit testing in drupal 8Automated php unit testing in drupal 8
Automated php unit testing in drupal 8Jay Friendly
 
PHPUnit with CakePHP and Yii
PHPUnit with CakePHP and YiiPHPUnit with CakePHP and Yii
PHPUnit with CakePHP and Yiimadhavi Ghadge
 
PHPUnit: from zero to hero
PHPUnit: from zero to heroPHPUnit: from zero to hero
PHPUnit: from zero to heroJeremy Cook
 
Automated Testing in WordPress, Really?!
Automated Testing in WordPress, Really?!Automated Testing in WordPress, Really?!
Automated Testing in WordPress, Really?!Ptah Dunbar
 
PhpUnit - The most unknown Parts
PhpUnit - The most unknown PartsPhpUnit - The most unknown Parts
PhpUnit - The most unknown PartsBastian Feder
 
Unit Testing in PHP
Unit Testing in PHPUnit Testing in PHP
Unit Testing in PHPRadu Murzea
 
Introduction to Unit Testing with PHPUnit
Introduction to Unit Testing with PHPUnitIntroduction to Unit Testing with PHPUnit
Introduction to Unit Testing with PHPUnitMichelangelo van Dam
 
Test Driven Development with PHPUnit
Test Driven Development with PHPUnitTest Driven Development with PHPUnit
Test Driven Development with PHPUnitMindfire Solutions
 
Unit Testing using PHPUnit
Unit Testing using  PHPUnitUnit Testing using  PHPUnit
Unit Testing using PHPUnitvaruntaliyan
 
Advanced PHPUnit Testing
Advanced PHPUnit TestingAdvanced PHPUnit Testing
Advanced PHPUnit TestingMike Lively
 

Destaque (15)

HipHop VM: overclocking Symfony
HipHop VM: overclocking SymfonyHipHop VM: overclocking Symfony
HipHop VM: overclocking Symfony
 
chapters
chapterschapters
chapters
 
PHPUnit
PHPUnitPHPUnit
PHPUnit
 
PHP Unit y TDD
PHP Unit y TDDPHP Unit y TDD
PHP Unit y TDD
 
Automated php unit testing in drupal 8
Automated php unit testing in drupal 8Automated php unit testing in drupal 8
Automated php unit testing in drupal 8
 
PHPUnit with CakePHP and Yii
PHPUnit with CakePHP and YiiPHPUnit with CakePHP and Yii
PHPUnit with CakePHP and Yii
 
Hiphop php
Hiphop phpHiphop php
Hiphop php
 
PHPUnit: from zero to hero
PHPUnit: from zero to heroPHPUnit: from zero to hero
PHPUnit: from zero to hero
 
Automated Testing in WordPress, Really?!
Automated Testing in WordPress, Really?!Automated Testing in WordPress, Really?!
Automated Testing in WordPress, Really?!
 
PhpUnit - The most unknown Parts
PhpUnit - The most unknown PartsPhpUnit - The most unknown Parts
PhpUnit - The most unknown Parts
 
Unit Testing in PHP
Unit Testing in PHPUnit Testing in PHP
Unit Testing in PHP
 
Introduction to Unit Testing with PHPUnit
Introduction to Unit Testing with PHPUnitIntroduction to Unit Testing with PHPUnit
Introduction to Unit Testing with PHPUnit
 
Test Driven Development with PHPUnit
Test Driven Development with PHPUnitTest Driven Development with PHPUnit
Test Driven Development with PHPUnit
 
Unit Testing using PHPUnit
Unit Testing using  PHPUnitUnit Testing using  PHPUnit
Unit Testing using PHPUnit
 
Advanced PHPUnit Testing
Advanced PHPUnit TestingAdvanced PHPUnit Testing
Advanced PHPUnit Testing
 

Semelhante a IPC 2013 - High Performance PHP with HipHop

Northeast PHP - High Performance PHP
Northeast PHP - High Performance PHPNortheast PHP - High Performance PHP
Northeast PHP - High Performance PHPJonathan Klein
 
Introduction to PHP (SDPHP)
Introduction to PHP   (SDPHP)Introduction to PHP   (SDPHP)
Introduction to PHP (SDPHP)Eric Johnson
 
Introduction to PHP - SDPHP
Introduction to PHP - SDPHPIntroduction to PHP - SDPHP
Introduction to PHP - SDPHPEric Johnson
 
"Building Modern PHP Applications" - Jackson Murtha, South Dakota Code Camp 2012
"Building Modern PHP Applications" - Jackson Murtha, South Dakota Code Camp 2012"Building Modern PHP Applications" - Jackson Murtha, South Dakota Code Camp 2012
"Building Modern PHP Applications" - Jackson Murtha, South Dakota Code Camp 2012Blend Interactive
 
Continuous Integration In Php
Continuous Integration In PhpContinuous Integration In Php
Continuous Integration In PhpWilco Jansen
 
Scraping the web with Laravel, Dusk, Docker, and PHP
Scraping the web with Laravel, Dusk, Docker, and PHPScraping the web with Laravel, Dusk, Docker, and PHP
Scraping the web with Laravel, Dusk, Docker, and PHPPaul Redmond
 
PHP, Under The Hood - DPC
PHP, Under The Hood - DPCPHP, Under The Hood - DPC
PHP, Under The Hood - DPCAnthony Ferrara
 
PHP BASIC PRESENTATION
PHP BASIC PRESENTATIONPHP BASIC PRESENTATION
PHP BASIC PRESENTATIONkrutitrivedi
 
The why and how of moving to php 8
The why and how of moving to php 8The why and how of moving to php 8
The why and how of moving to php 8Wim Godden
 
Codeception: introduction to php testing
Codeception: introduction to php testingCodeception: introduction to php testing
Codeception: introduction to php testingEngineor
 
2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida realPHP Conference Argentina
 
Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Combell NV
 
PHP Doesn't Suck
PHP Doesn't SuckPHP Doesn't Suck
PHP Doesn't SuckJohn Hobbs
 
Php training100%placement-in-mumbai
Php training100%placement-in-mumbaiPhp training100%placement-in-mumbai
Php training100%placement-in-mumbaivibrantuser
 
Behat Workshop at WeLovePHP
Behat Workshop at WeLovePHPBehat Workshop at WeLovePHP
Behat Workshop at WeLovePHPMarcos Quesada
 
Upstate CSCI 450 PHP Chapters 5, 12, 13
Upstate CSCI 450 PHP Chapters 5, 12, 13Upstate CSCI 450 PHP Chapters 5, 12, 13
Upstate CSCI 450 PHP Chapters 5, 12, 13DanWooster1
 

Semelhante a IPC 2013 - High Performance PHP with HipHop (20)

Northeast PHP - High Performance PHP
Northeast PHP - High Performance PHPNortheast PHP - High Performance PHP
Northeast PHP - High Performance PHP
 
Introduction to PHP (SDPHP)
Introduction to PHP   (SDPHP)Introduction to PHP   (SDPHP)
Introduction to PHP (SDPHP)
 
Introduction to PHP - SDPHP
Introduction to PHP - SDPHPIntroduction to PHP - SDPHP
Introduction to PHP - SDPHP
 
"Building Modern PHP Applications" - Jackson Murtha, South Dakota Code Camp 2012
"Building Modern PHP Applications" - Jackson Murtha, South Dakota Code Camp 2012"Building Modern PHP Applications" - Jackson Murtha, South Dakota Code Camp 2012
"Building Modern PHP Applications" - Jackson Murtha, South Dakota Code Camp 2012
 
Continuous Integration In Php
Continuous Integration In PhpContinuous Integration In Php
Continuous Integration In Php
 
Scraping the web with Laravel, Dusk, Docker, and PHP
Scraping the web with Laravel, Dusk, Docker, and PHPScraping the web with Laravel, Dusk, Docker, and PHP
Scraping the web with Laravel, Dusk, Docker, and PHP
 
PHP, Under The Hood - DPC
PHP, Under The Hood - DPCPHP, Under The Hood - DPC
PHP, Under The Hood - DPC
 
What the HACK is HHVM?
What the HACK is HHVM?What the HACK is HHVM?
What the HACK is HHVM?
 
PHP BASIC PRESENTATION
PHP BASIC PRESENTATIONPHP BASIC PRESENTATION
PHP BASIC PRESENTATION
 
The why and how of moving to php 8
The why and how of moving to php 8The why and how of moving to php 8
The why and how of moving to php 8
 
Codeception: introduction to php testing
Codeception: introduction to php testingCodeception: introduction to php testing
Codeception: introduction to php testing
 
2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real
 
Wt unit 4 server side technology-2
Wt unit 4 server side technology-2Wt unit 4 server side technology-2
Wt unit 4 server side technology-2
 
Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10
 
PHP Doesn't Suck
PHP Doesn't SuckPHP Doesn't Suck
PHP Doesn't Suck
 
Evolution of deploy.sh
Evolution of deploy.shEvolution of deploy.sh
Evolution of deploy.sh
 
Php training100%placement-in-mumbai
Php training100%placement-in-mumbaiPhp training100%placement-in-mumbai
Php training100%placement-in-mumbai
 
PHP - Introduction to PHP Fundamentals
PHP -  Introduction to PHP FundamentalsPHP -  Introduction to PHP Fundamentals
PHP - Introduction to PHP Fundamentals
 
Behat Workshop at WeLovePHP
Behat Workshop at WeLovePHPBehat Workshop at WeLovePHP
Behat Workshop at WeLovePHP
 
Upstate CSCI 450 PHP Chapters 5, 12, 13
Upstate CSCI 450 PHP Chapters 5, 12, 13Upstate CSCI 450 PHP Chapters 5, 12, 13
Upstate CSCI 450 PHP Chapters 5, 12, 13
 

Último

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 

Último (20)

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 

IPC 2013 - High Performance PHP with HipHop

  • 1. Steve Kamerman | ScientiaMobile, Inc. Co-Founder / Software Architect High-Performance PHP with HipHop
  • 2.
  • 3. 2008 - Facebook's Challenge ● Explosive growth ● Need more servers! ● Bottleneck: Page generation ● 20% of PHP time was in native code
  • 4. Why is PHP so slow? ● Symbol table lookups ● No static binding ● Dynamic typing ● Share-Nothing-Architecture
  • 5. 2008-2010 – HipHop for PHP is born ● 400 Billion PHP-generated pageviews per month! ● Facebook invents HipHop for PHP ● Deployed system-wide in 2010
  • 6. HipHop for PHP Research & Development HPHPc HHVM
  • 7. What is HipHop for PHP? • Multi-threaded web server + PHP runtime • HPHPc: PHP -> C++ translator • HHVM: PHP virtual machine with JIT compiler • Typically 2x – 5x speed increase over stock PHP + APC
  • 8. HipHop for PHP Compiler (HPHPc) ● Translates PHP code into C++ ● Dynamic typing makes this difficult ● Function parity lacking ● Long compilation time
  • 9. Our Experience ● Created WURFL Cloud REST API ● Evaluated HPHPc ● Improved Latency ● Stability issues
  • 10. Architecture Internet HAProxy Load Balancer (primary) WURFL Node HPHPc Apache WURFL Node HPHPc Apache HAProxy Load Balancer (secondary) WURFL Node HPHPc Apache WURFL Node HPHPc Apache Memcached Memcached Memcached Memcached MySQL MySQL MySQL MySQL
  • 12. Next-Gen HipHop: HHVM ● Virtual Machine ● Better PHP Support ● JIT Compiler ● Bytecode Survives Restart
  • 13. How HHVM works Internet HHV M Web Server Run Native Code Run Bytecode Generate Bytecode JIT Compile
  • 14. HHVM vs HPHPc Performance http://www.hhvm.com/blog/875/wow-hhvm-is-fast-too-bad-it-doesnt-run-my-code https://github.com/facebook/hhvm/blob/master/hphp/doc/ir.specification
  • 15. Optimizing PHP for HHVM ● Type Inference – PHP Gotcha: core function fail with (bool)false ● HHVM Upgrades primitives ● Use strict comparison
  • 16. Don't care about type strict comparison? You should. Trust me. var_export("true" == true); // true   var_export("false" == true); // true   var_export("true" == (bool)"false"); // true var_export(strpos("Steve Kamerman", "Kamerman") == true); // true   var_export(strpos("Steve Kamerman", "Steve") == true); // false   $test = "31 is too old!"; var_export(31 == $test); // true var_export("31.0" == 31); // true var_export("031" == 031); // false var_export(31.0 == 31); // true var_export($test += 1); // 32
  • 17. Avoid global scope ● ● Code in the global scope is interpreted since it is (nearly) impossible to type-track Even wrapping global code helps: class foo{public static function bar(){ $something = "test"; echo $something; }}foo::bar(); ● Better approach: don’t write crappy code!
  • 18. Unique Classes, Functions, Constants ● HHVM supports namespaces – use them! ● MyAppBar and MyAppFooBar are not ambiguous ● ● ● Avoid “dynamic” constants: define("MY_CONST", $foo? "foo": "bar"); I can almost picture a feature request for undefine() and redefine() If they are truly constant, use const
  • 19. Better approach: don't use define() namespace MyApp; class Config { const MY_CONST = "I'm real constant"; private static $storage = array( "PSEUDO_CONSTANT" => "What did you call me?", ); public static function get($name) { if (!array_key_exists($name, self::$storage)) { throw new Exception(__CLASS__." property [$name] does not exist"); } return self::$storage[$name]; } } echo Config::MY_CONST."n";
  • 20. Avoid dynamic variables ● If you are using this syntax, there is a better way to solve the problem: $foo = "Wow, this hurts my brain!"; $var_name = "foo"; echo $$var_name; ● ● extract() and compact() are sometimes used more legitimately (ex: view rendering), but avoid them If you need get_defined_vars() for non-testing code, you need to rewrite it before someone sees it :)
  • 21. Declare class properties ● They should be declared anyway $foo = new stdClass(); echo $foo->bar; // PHP Notice: Undefined property ● Getters are optimized
  • 22. Perfomance Gain ● ● Less than 5%, but still good practice Sub-optimal functions still work, even eval() and goto! http://php.net/manual/en/control-structures.goto.php
  • 23. Repo.Authoritative Mode ● Pre-Analyze files ● PHP files assumed unchanged ● Delete cache manually
  • 24. Current state of HipHop ● HHVM v2.2.0 just released ● Very close to PHP 5.4 ● Dozens of extensions ● Performance nearly 5x ● Goal: Support top 20 frameworks in 2013
  • 25. Framework Support Framework % Unit Tests Pass Framework % Unit Tests Pass Facebook PHP SDK 100 CodeIgniter 81 Paris9 100 Assetic 80 Idiorm9 100 Twig 78 Slim 99 Wordpress 76 Drupal 98 phpBB 0 Composer 97 CakePHP 0 Laravel 95 Joomla 0 yii 92 PHPMyAdmin 0 Symfony 91 zf2 0 PHPUnit2 90 Doctrine 0 Magento 0 http://www.hhvm.com/blog/875/wow-hhvm-is-fast-too-bad-it-doesnt-run-my-code
  • 26. Why is it open source? Will it last? ● Under PHP license, hard to separate ● Public activity slowed in 2011 ● Under active public development in 2012-13 ● Dev team is active on IRC (freenode #hhvm)
  • 27. Facebook's Commitment “In years past we've had a few examples of projects which have not been well supported, but we are now much better at growing and sustaining community projects, including, lately, in mobile. [HipHop for PHP] is absolutely a project that we stand strongly behind… stay tuned.” James Pearce, Head of Developer Advocacy at Facebook
  • 28. References ● ● ● ● ● Special thanks to the HipHop for PHP team! https://www.facebook.com/hphp Twitter: @HipHopVM http://www.hhvm.com/ Sebastian Bergmann – Static Code Analysis with HipHop http://sebastian-bergmann.de/archives/918-Static-Analysis-with-HipHop-for-PHP.html http://www.slideshare.net/nickgsuperstar/static-analysis-for-php https://github.com/sebastianbergmann/hhvm-wrapper Haiping Zhao – HipHop Compiler for PHP? Transforming PHP into C++ http://www.youtube.com/watch?v=p5S1K60mhQU Sara Golemon – Scaling with HipHop http://www.youtube.com/watch?v=Dwek7dZDFN0 Ben Foster – Facebook Growth Data http://www.benphoster.com/facebook-user-growth-chart-2004-2010/

Notas do Editor

  1. {"5":"154k/second, or 154/sec per server on 1000 servers\n","11":"Facebook was customer\nReduced latency from 20ms (Apache) to 2m\nPeak traffic over 1500 req/sec, load tested at over 10k req/sec per serverCode rebuild took almost 10 minutes per server\nHPHP and Apache shared the same document root\nCompilation of HPHP itself was painful! Super-specific dependencies\n","23":"To use:\nAnalyze:\nhhvm --hphp --target hhbc --input-list <(find -name "*.php") -k1 -l3\nMove in hhvm.hhbc\nRestart server\n","8":"Literally translated PHP code into human-readable C++, preserving class names\nAt Facebook, PHP and C++ are common languages, so this works well\nMany versions of each function may be generated with different parameter types to optimized code\nCompilation at Facebook took 20min (across 100 machines)\n"}