<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" 
      xmlns:thr="http://purl.org/syndication/thread/1.0">
  <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php" />
  <link rel="self" type="application/atom+xml" href="http://www.readwriteweb.com/atom.xml" />
  <id>tag:www.readwriteweb.com,2011:/1/tag:www.readwriteweb.com,2010://1.18056-</id>
  <updated>2011-08-16T15:54:31Z</updated>
  <title>Comments for CONFIRMED: Facebook Gets Faster, Debuts Homegrown PHP Compiler [Update]</title>
  
  <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.35-en</generator>
  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056</id>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.readwriteweb.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=18056" title="CONFIRMED: Facebook Gets Faster, Debuts Homegrown PHP Compiler [Update]" />
    <published>2010-02-02T09:09:00Z</published>
    <updated>2010-02-03T22:56:42Z</updated>
    <title>CONFIRMED: Facebook Gets Faster, Debuts Homegrown PHP Compiler [Update]</title>
    <summary>The rumors have been flying over what&apos;s going on over at Facebook headquarters. The word has been that a PHP team was brought in and made to sign non-disclosure agreements before discussing a PHP project that has been in development for the past two years. Alex Handy, senior editor of the Software Development Times Blog,...</summary>
    <author>
      <name>Mike Melanson</name>
      <uri>http://twitter.com/rwwmike</uri>
    </author>
    
    <category term="Facebook" />
    
    <category term="NYT" />
    
    <category term="News" />
    
    <content type="html" xml:lang="en" xml:base="http://www.readwriteweb.com/">
      <![CDATA[<p><img alt="thefacebook.jpg" src="http://www.readwriteweb.com/images/thefacebook.jpg" width="150" height="66" hspace="5px" vspace="5px" />The rumors have been flying over what's going on over at Facebook headquarters. The word has been that a PHP team was brought in and made to sign non-disclosure agreements before discussing a PHP project that has been in development for the past two years. <a href="http://www.sdtimes.com/author/ahandy.aspx">Alex Handy</a>, senior editor of the Software Development Times Blog, <a href="http://www.sdtimes.com/blog/post/2010/01/30/Facebook-rewrites-PHP-runtime.aspx">predicted last Saturday</a> that Facebook "has rewritten the PHP runtime from scratch," and several sources have confirmed for us tonight that Facebook has indeed been making some changes to the basic PHP runtime environment.</p>

<p>According to our sources, Facebook has been working on a PHP compiler that will <br />
<font style="float: right; margin-left: 10px;"><script type="text/javascript">digg_url = 'hhttp://digg.com/programming/Confirmed_Facebook_Debuts_Homegrown_PHP_Compiler';digg_bgcolor = '#ffffff';digg_skin = 'normal';</script><script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></font><font style="float: right; margin-left: 10px;"><script type="text/javascript">tweetmeme_url = 'http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php';tweetmeme_source = 'rww';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></font>increase speed by around 80% and offer a just-in-time (JIT) compilation engine that will offer a number of advantages. The project is very similar to Google's <a href="http://arstechnica.com/open-source/news/2009/03/google-launches-project-to-boost-python-performance-by-5x.ars"><em>Unladen Swallow</em></a> project, which rebuilt the Python compiler, boosting the speed fivefold and opening the door for multi-language integration.</p>]]>
      <![CDATA[<p><strong>Update:</strong> Facebook officially <a href="http://www.readwriteweb.com/archives/update_facebook_rewrites_php_runtime_with_project.php">announced</a> the project, titled HipHop, this morning and confirmed that it would be released as open source this evening. Facebook will be hosting a talk at 7:30 PST with PHP developers to get into the specifics. The talk will be <a href="http://www.ustream.tv/channel/facebook-platform">streamed live</a> on Ustream. Developers are encouraged to comment on <a href="http://www.readwriteweb.com/archives/open_thread_what_do_developers_think_of_facebooks.php">RWW's open thread</a> discussing the implications of the PHP runtime rewrite.</p>

<p><a href="http://twitter.com/rcrowley">Richard Crowley</a>, an engineer at OpenDNS who is familiar with the project, told us that <a href="http://www.davidrecordon.com/">David Recordon</a>, an engineer at Facebook, invited him to come to Facebook's headquarters Tuesday morning but wouldn't give a reason. Crowley mused to us that it was likely his <a href="http://php.net/index.php">PHP</a> skills and personal connections that got him through the doors and clued us in on what he thinks will be going on behind them.</p>

<p>PHP is normally an interpreted language, which means that every time a user accesses a PHP page, the server needs to take the code and interpret it to produce the final product. A compiler, however, makes this process much quicker, as the code is interpreted before the user ever asks for the page. The problem here is that any time that page needs to be changed, the code needs to be recompiled.</p>

<p>Crowley explained to us that the JIT compiler Facebook is introducing occupies a middle ground that not only retains the flexibility of PHP as an interpreted language, but offers the speed of compiled languages like C. </p>

<blockquote>"Compiling PHP to code a CPU can directly execute certainly has performance implications. It would be silly to alter the workflow to be more like C or C++ by doing all parsing and compilation ahead of time. At the other end of the spectrum, it's slow and out-of-fashion to interpret every statement within the runtime. A JIT (Just In Time) compiler compiles frequently-executed portions of the program to machine code for speed while maintaining the flexibility of interpreted code." </blockquote>

<p>Essentially, the closer a coding language comes to bare metal, the faster the program will run. Facebook's programs are reported to run around 80% faster than before now that the runtime - the code-compiler-program sequence - has been restructured and rewritten.</p>

<p>Crowley continued, saying that he expected Facebook to announce a JIT compiler based on the <a href="http://llvm.org/">Low Level Virtual Machine</a>, which lays at the heart of Google's <em>Unladen Swallow</em> project. Crowley's suppositions were confirmed by anonymous sources tonight.</p>

<p>When we asked what he thought of this style of release - years of secretive development by two lonely coders, likely locked in a deep, dark vault - Crowley said it was typical.</p>

<p>"[Facebook] tends to do giant code dumps," he said. "Facebook tends to build something big, use it, and open source it."</p>

<p>We wish Facebook had made this project open, as we're sure many PHP developers would concur that the efforts would have been much swifter and more beneficial to the public had more folks and a larger team been involved from the outset. And we do wonder about possible duplication of effort from others who may have been working on the same issue. </p>

<p>There are a number of us out here running PHP (ahem!) that could certainly have benefited from the speed boost.</p>

<p>Nonetheless, we're looking forward to seeing what this does for our PHP browsing experience and how the open-source community reacts to the news. Will the community rally around the new compiler and push PHP into a new realm? Let us know your thoughts in the comments.</p>

<p><strong>Update: </strong>In fact, it turns out that the PHP source code is getting translated first into C++ and then compiled with g++. While the details of the process are different, the end result is the same as are many of the implications. Jolie O'Dell wrote <a href="http://www.readwriteweb.com/archives/update_facebook_rewrites_php_runtime_with_project.php#comment-185222">an update</a> earlier today, explaining exactly how Facebook has altered PHP and we'll be taking a look at some of the implications shortly.</p>

<p><em>Additional reporting for this story was also done by <a href="http://www.readwriteweb.com/archives/author/jolie-odell-1.php">Jolie O'Dell</a>.</em></p>]]>
    </content>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:317540</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c317540" />
    <title>Comment from Business Loans on 2011-04-25</title>
    <author>
        <name>Business Loans</name>
        <uri>http://www.merchantloans.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.merchantloans.com">
        <![CDATA[<p>The hype around this announcement seems over the top. HipHop isn&#39;t going to be used by people looking to speed up something like a Wordpress blog. It is going to be a last resort for those who don&#39;t want to give up PHP for some reason.</p>]]>
    </content>
    <published>2011-04-25T20:53:55Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:313626</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c313626" />
    <title>Comment from 800poundmedia on 2011-04-07</title>
    <author>
        <name>800poundmedia</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Anyone have suggestions on what&#39;s better...this or memcache? Is the performance boost that significant?</p>]]>
    </content>
    <published>2011-04-07T12:45:39Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:296843</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c296843" />
    <title>Comment from Free itunes on 2011-01-09</title>
    <author>
        <name>Free itunes</name>
        <uri>http://www.freeitunescodesnow.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.freeitunescodesnow.com/">
        <![CDATA[<p>How will it make facebook faster?? :s</p>]]>
    </content>
    <published>2011-01-09T16:57:41Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:251122</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c251122" />
    <title>Comment from iTunes Codes on 2010-10-07</title>
    <author>
        <name>iTunes Codes</name>
        <uri>http://freeitunescodesonline.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://freeitunescodesonline.com/">
        <![CDATA[<p>I don't get how this will make it faster?</p>]]>
    </content>
    <published>2010-10-08T01:15:27Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:209541</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c209541" />
    <title>Comment from business card maker online on 2010-05-06</title>
    <author>
        <name>business card maker online</name>
        <uri>http://www.businesscardmakeronline.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.businesscardmakeronline.com/">
        <![CDATA[<p>Well, I guess everyone noticed its improvement and I like the way FB made a great move. ;-)</p>]]>
    </content>
    <published>2010-05-06T21:28:06Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:199241</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c199241" />
    <title>Comment from Cuervo on 2010-03-25</title>
    <author>
        <name>Cuervo</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi I speak Spanish so I apologize for what they fail to understand.<br />
I want to achieve higher performance in the server side (using php) and have read about hiphop, FastCGI, CGI, SAPI but not to do to improve performance if someone can give me advice that I write to this address rmorera@estudiantes.uci.cu<br />
thanks</p>]]>
    </content>
    <published>2010-03-25T18:59:38Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185620</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185620" />
    <title>Comment from Shipwrecks and treasures of the Caribbean on 2010-02-03</title>
    <author>
        <name>Shipwrecks and treasures of the Caribbean</name>
        <uri>http://www.shipwrecks-caribbean.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.shipwrecks-caribbean.com">
        <![CDATA[<p>Good news for PHP developers!</p>]]>
    </content>
    <published>2010-02-03T15:30:38Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185596</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185596" />
    <title>Comment from Ron on 2010-02-03</title>
    <author>
        <name>Ron</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Perl 6 & Rakudo FTW!</p>]]>
    </content>
    <published>2010-02-03T13:21:30Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185574</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185574" />
    <title>Comment from Stuart Shields on 2010-02-03</title>
    <author>
        <name>Stuart Shields</name>
        <uri>http://www.phpscriptdir.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.phpscriptdir.com">
        <![CDATA[<p>It'll be interesting to see what becomes of this. Remember some years ago Yahoo! tried to do the same thing with PHP but failed at it.</p>

<p>If this works, it'll be great for PHP a lot more developers will develop Apps for PHP.</p>]]>
    </content>
    <published>2010-02-03T12:06:21Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185560</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185560" />
    <title>Comment from Haris on 2010-02-03</title>
    <author>
        <name>Haris</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>It's a good thing that Facebook is releasing their project Open Source.</p>]]>
    </content>
    <published>2010-02-03T11:17:30Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185499</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185499" />
    <title>Comment from yogi cogeg on 2010-02-03</title>
    <author>
        <name>yogi cogeg</name>
        <uri>http://facebook</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://facebook">
        <![CDATA[<p>i like it i man brebes IN</p>]]>
    </content>
    <published>2010-02-03T09:11:47Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185426</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185426" />
    <title>Comment from Kompakt laminant on 2010-02-02</title>
    <author>
        <name>Kompakt laminant</name>
        <uri>http://htpp:;//www.cepheinsaat.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://htpp:;//www.cepheinsaat.com">
        <![CDATA[<p>It is always good to hear about huge performance improvements. The energy savings will once save the planet.</p>]]>
    </content>
    <published>2010-02-03T06:12:53Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185425</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185425" />
    <title>Comment from Gusevoisadd on 2010-02-02</title>
    <author>
        <name>Gusevoisadd</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>@Derrick   I agree with you</p>

<p></p>

<p><a href="http://puppy-accessories.blogspot.com" rel="nofollow">http://puppy-accessories.blogspot.com</a></p>]]>
    </content>
    <published>2010-02-03T06:12:16Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185416</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185416" />
    <title>Comment from Klaus Graefensteiner on 2010-02-02</title>
    <author>
        <name>Klaus Graefensteiner</name>
        <uri>http://spamparty.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://spamparty.com">
        <![CDATA[<p>Cool, <br />
I guess the JVM and CLR are years ahead of the game. Microsoft should now put some effort into Iron PHP running on the DLR.</p>

<p>It is always good to hear about huge performance improvements. The energy savings will once save the planet.</p>

<p>Klaus</p>]]>
    </content>
    <published>2010-02-03T04:39:02Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185220</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185220" />
    <title>Comment from Philip Snelgrove on 2010-02-02</title>
    <author>
        <name>Philip Snelgrove</name>
        <uri>http://www.dradius.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.dradius.com">
        <![CDATA[<p>It's about time.  Other solutions like this have been attempted, but none of them have been viable.</p>

<p>It takes a project with the volume of Facebook to provide real statistics that lead to art-expanding moves like this one.  Anyone else who might have tried something like this would be guessing, and anyone who doesn't use real data when forming their opinions is likely wrong (as cool as they sound).</p>

<p>Thank you Facebook for providing this advancement to human technology.</p>]]>
    </content>
    <published>2010-02-02T19:22:05Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185200</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185200" />
    <title>Comment from bruce wayne on 2010-02-02</title>
    <author>
        <name>bruce wayne</name>
        <uri>http://www.factoetum.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.factoetum.com">
        <![CDATA[<p>@Jolie O'Dell</p>

<p>Your right. They have released Thrift and Cassandra.....but they have released members data and cotent from the fb silo.....and they do not share the hundreds of  millions in revenue that they generate off of the member owned and created content....</p>]]>
    </content>
    <published>2010-02-02T18:22:54Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185197</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185197" />
    <title>Comment from bigjobsboard on 2010-02-02</title>
    <author>
        <name>bigjobsboard</name>
        <uri>http://www.bigjobsboard.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.bigjobsboard.com">
        <![CDATA[<p>Its good to know that FB is doing something with its slow loading pages and script failed messages. Its annoying sometimes when your messages aren't posted due to script fail.</p>

<p>With this project on the go, will FB begin to charge its users? I hope not.<br />
</p>]]>
    </content>
    <published>2010-02-02T18:20:54Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185186</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185186" />
    <title>Comment from Gary on 2010-02-02</title>
    <author>
        <name>Gary</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I hear comments like "they should have used a better language." or the one that made me cringe, "this is why I used .NET".</p>

<p>Let's see the choices when FB was being written:</p>

<p>1. ASP<br />
2. PHP<br />
3. Java<br />
4. ColdFusion<br />
5. Python<br />
6. Perl / CGI<br />
7. ??</p>

<p>You could make the argument that ruby was around, but lets not. It was nearly a twinkle at that point in time without a real "test" behind it.</p>

<p>Given those eliminate all the commercial products (ASP, ColdFusion) from the list,<br />
leaving Java, PHP, Python and Perl.  Noting that ASP (at the time) was nothing more than a scripting language around COM objects -- a complete disaster with NO security model and terrible performance through IIS (how many sites out there do you remember being hacked...or worse, simply crashing)  ColdFusion is something that I run into a lot now, I run into this because people want to get rid of it and replace it...</p>

<p>Looking at those choices, one could pretty quickly point out that Java would (at that point in time) required some serious iron to scale, it was also not a popular server platform for Web development.   This leaves PHP, Perl and Python.  Let's just say right now that Perl is a piece of junk for anything other than processing text files and really needs to be taken out back and shot.  Why aren't people doing Perl anymore? Because PHP exists... plain and simple.</p>

<p>So it leaves the argument that Python, which by all accounts is a formidable language, good enough for Google, and it should be good enough for most things, right? Why didn't they use Python -- I think I can answer that question.  At the time FB was being built, Python simply wasn't all that popular.  PHP had grown into a behemoth that was being sold as the "scripting" language of the Web, you could find cheap hosting with anyone, and usually it supported PHP -- with Python, it was a different story.</p>

<p>With that said, people who crap on PHP need to understand, there's always something "better", but its usually about the best tool for the job.  There's nothing wrong with PHP at all, its a good language, and its very scalable.  Making jabs at PHP is really dopey because we could sit here and make the same dopey comments about Ruby or Python... </p>

<p>I just recently had a conversation with someone about why I didn't use Ruby for a large project -- I said simply:  Because this application needs to run on commercial hosting systems easily.  I can't be sure that Ruby is going to be running on those boxes, but I certainly can assume that PHP is...</p>

<p>The same goes for .NET, is it bad?  No its not, but would I write a Web app like Facebook on it? Hell no. But would I write a business application thats used by thousands of employees that have to integrate with SitePoint, Outlook,. Exchange? Sure would... </p>]]>
    </content>
    <published>2010-02-02T17:52:29Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185181</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185181" />
    <title>Comment from Sam Hennessy on 2010-02-02</title>
    <author>
        <name>Sam Hennessy</name>
        <uri>http://www.google.com/profiles/sam.hennessy</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.google.com/profiles/sam.hennessy">
        <![CDATA[<p>There seems to be a lot on confusion about what this post says.</p>

<p>This post says Facebook is using a new engine under PHP. PHP currently uses the Zend Engine. They will be replacing that with LLVM.</p>

<p>Op-code caches only store the op-codes that are feed to the engine. So it is not significant that the code isn't parse every time, like the post says it does, as most are using an op-code cache that stops that. What is happening is that in place of Zend Engine op-codes generated from the PHP source code it will now generate whatever the LLVM engine requires.</p>

<p>This is a big effort as there is not a clean separation of PHP from the Zend Engine. So to add a new Engine would take a lot of work.</p>

<p>It is unlikely that it would change much about the language, as much is alluded to in the post. Also lets not forget PHP is just some glue code around a ton of C libraries so making sure that all the extensions work would also be a very important aspect of a project like this.</p>]]>
    </content>
    <published>2010-02-02T17:48:35Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185177</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185177" />
    <title>Comment from Derrick on 2010-02-02</title>
    <author>
        <name>Derrick</name>
        <uri>http://www.profeval.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.profeval.com">
        <![CDATA[<p>Someone should have done this a long time ago.<br />
</p>]]>
    </content>
    <published>2010-02-02T17:32:57Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185171</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185171" />
    <title>Comment from abcphp.com on 2010-02-02</title>
    <author>
        <name>abcphp.com</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>@Nathan sorry about that, thought myspace was running ColdFusion. If you look at the top 20 (http://www.alexa.com/topsites) how many of them are PHP and asp.net?</p>]]>
    </content>
    <published>2010-02-02T17:19:53Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185164</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185164" />
    <title>Comment from Nathan on 2010-02-02</title>
    <author>
        <name>Nathan</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>@abcphp.com</p>

<p>MySpace is written is ASP.NET.  But to further answer your question - all the microsoft properties are asp.net and are some of the most highly trafficed sites on the internet.</p>]]>
    </content>
    <published>2010-02-02T17:07:46Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185163</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185163" />
    <title>Comment from Robert on 2010-02-02</title>
    <author>
        <name>Robert</name>
        <uri>http://www.insweb.com/health-insurance.html</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.insweb.com/health-insurance.html">
        <![CDATA[<p>I remember when MySpace was jokingly referred to as CrawlSpace. Facebook took on a similar reputation until now--apparently. </p>]]>
    </content>
    <published>2010-02-02T17:07:25Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185162</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185162" />
    <title>Comment from Blake Schwendiman on 2010-02-02</title>
    <author>
        <name>Blake Schwendiman</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Very excited about this possibility. Facebook has pioneered some great open source tools already and they have enough skin in the game to be the right entity to build something like this. I'm ready to beta test it.</p>]]>
    </content>
    <published>2010-02-02T16:58:24Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185161</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185161" />
    <title>Comment from abcphp.com on 2010-02-02</title>
    <author>
        <name>abcphp.com</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>@Edgar hmmm a site as big as FB or MySpace! Can you name any similar site in ASP.NET?</p>]]>
    </content>
    <published>2010-02-02T16:57:41Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185159</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185159" />
    <title>Comment from Edgar on 2010-02-02</title>
    <author>
        <name>Edgar</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>And this is why I use ASP.NET.  No need to rewrite the runtime when your site gets too big.</p>]]>
    </content>
    <published>2010-02-02T16:45:00Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185137</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185137" />
    <title>Comment from Les on 2010-02-02</title>
    <author>
        <name>Les</name>
        <uri>http://mindmeld.ws</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://mindmeld.ws">
        <![CDATA[<p>It is fun to watch good ideas spread.</p>

<p><a href="http://www.mindmeld.ws/blog/2010/02/02/java-changed-the-world/" rel="nofollow">http://www.mindmeld.ws/blog/2010/02/02/java-changed-the-world/</a></p>]]>
    </content>
    <published>2010-02-02T16:04:58Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185135</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185135" />
    <title>Comment from Vance Lucas on 2010-02-02</title>
    <author>
        <name>Vance Lucas</name>
        <uri>http://www.vancelucas.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.vancelucas.com">
        <![CDATA[<p>I think everyone who's asking about opcode caches like APC and eAccelerator are forgetting how big FaceBook is. They are undoubtedly already using technologies like these to their maximum potential. Companies don't just do things like this for no reason. I can guarantee that whatever they created will produce performance gains above and beyond APC and the like.</p>]]>
    </content>
    <published>2010-02-02T16:02:28Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185131</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185131" />
    <title>Comment from Dave Johansen on 2010-02-02</title>
    <author>
        <name>Dave Johansen</name>
        <uri>http://codebydave.blogspot.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://codebydave.blogspot.com">
        <![CDATA[<p>Just to correct a misstatement from the article. Unladen Swallow's ( <a href="http://code.google.com/p/unladen-swallow/" rel="nofollow">http://code.google.com/p/unladen-swallow/</a> ) goal is for a 5x speed up, but they are still in the initial phase and far from reaching that goal.</p>]]>
    </content>
    <published>2010-02-02T15:52:26Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185130</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185130" />
    <title>Comment from rurban on 2010-02-02</title>
    <author>
        <name>rurban</name>
        <uri>http://search.cpan.org/dist/B-C/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://search.cpan.org/dist/B-C/">
        <![CDATA[<p>They built a "compiler", not a simple "opcode cache".</p>

<p>That means they can now declare static vars and optimize the function calls, arguments and return values to hell. method calls and inheritance lookup also. <br />
Thats why they get 80% and not just 10%. Like the roadsend php compiler (written in bigloo scheme, a lisp language).<br />
I believe they only enhanced roadsend with some private language enhancements to be able to optimize stupid run-time dynamics away.</p>

<p>JIT'ting is nice to further optimize dynamic loops.</p>

<p>In reality they should just use a better language which supports expressiveness and is easier compilable than <br />
simple PHP. But they are obviously locked into that mess.</p>]]>
    </content>
    <published>2010-02-02T15:52:01Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185124</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185124" />
    <title>Comment from Jim Stevensd on 2010-02-02</title>
    <author>
        <name>Jim Stevensd</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Amazing. I have always been a fan of MySPace, but FaceBook is starting to look mighty appealing.</p>

<p>Jess<br />
www.web-privacy.cz.tc</p>]]>
    </content>
    <published>2010-02-02T15:41:24Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185123</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185123" />
    <title>Comment from Rene on 2010-02-02</title>
    <author>
        <name>Rene</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>How does this new jit-compiler compare to the zend engine shipped with php5 / 6?<br />
</p>]]>
    </content>
    <published>2010-02-02T15:33:13Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185119</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185119" />
    <title>Comment from Lopo Lencastre de Almeida on 2010-02-02</title>
    <author>
        <name>Lopo Lencastre de Almeida</name>
        <uri>http://care2x.wordpress.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://care2x.wordpress.com">
        <![CDATA[<p>For projects like Care2x, where most of the code do not change a lot after installation but output is almost always different, something more than a cache mecanism would be nice.</p>]]>
    </content>
    <published>2010-02-02T15:18:58Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185118</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185118" />
    <title>Comment from Dustin on 2010-02-02</title>
    <author>
        <name>Dustin</name>
        <uri>http://www.dustinschmidt.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.dustinschmidt.com">
        <![CDATA[<p>Speed and performance on the web between Facebook and Google is like the nuclear arms race during the Cold War between the U.S. and the former Soviet Union.</p>

<p>I'm no programmer, but I'm savvy enough to understand some of the lingo... Is JIT used in conjunction with an opcode cache such as XCache or APC?</p>]]>
    </content>
    <published>2010-02-02T15:15:08Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185111</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185111" />
    <title>Comment from Travis Campbell on 2010-02-02</title>
    <author>
        <name>Travis Campbell</name>
        <uri>http://www.marketingprofessor.com/ppc/whats-your-experience-with-facebook-advertising/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.marketingprofessor.com/ppc/whats-your-experience-with-facebook-advertising/">
        <![CDATA[<p>They are doing what they can to gain a competitive advantage (perhaps why it was kept quiet until now).  I find my self wondering how this plays into their monetization strategy.  Perhaps it will also speed up the experience and provide advantages for advertisers as well.</p>

<p>-Travis</p>]]>
    </content>
    <published>2010-02-02T14:32:18Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185110</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185110" />
    <title>Comment from abcphp.com on 2010-02-02</title>
    <author>
        <name>abcphp.com</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I think facebook will open-source it. They (and all of us) would want PHP to be the language of choice for web apps. Other wise they would have gone for J2EE or .net rather than a building new PHP the compiler.</p>]]>
    </content>
    <published>2010-02-02T14:30:48Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185107</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185107" />
    <title>Comment from Johannes on 2010-02-02</title>
    <author>
        <name>Johannes</name>
        <uri>http://www.lautr.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.lautr.com">
        <![CDATA[<p>agrees with Jolie & Warren, FB has done a couple of Things, expcialy compared with other Companys alike - but the only thing we really care about, will it be more then an opcode cache like APC or not.... well, i guess we just have to wait and see</p>]]>
    </content>
    <published>2010-02-02T14:20:44Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185104</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185104" />
    <title>Comment from Aaron on 2010-02-02</title>
    <author>
        <name>Aaron</name>
        <uri>http://technosailor.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://technosailor.com">
        <![CDATA[<p>Wesley- Memcached is caching in memory as the name suggests. APC/eAccelerator are PHP Opcode caches which is similar to what compiled PHP would bring us, though I suspect not as fast.</p>

<p>Ari- Please, bro. Not everything is meant for laymans.</p>]]>
    </content>
    <published>2010-02-02T13:59:07Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185103</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185103" />
    <title>Comment from Ari Herzog on 2010-02-02</title>
    <author>
        <name>Ari Herzog</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>English? What does this mean in layman's language?</p>]]>
    </content>
    <published>2010-02-02T13:51:39Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185097</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185097" />
    <title>Comment from investor business daily on 2010-02-02</title>
    <author>
        <name>investor business daily</name>
        <uri>http://investor-planet.net/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://investor-planet.net/">
        <![CDATA[<p>This all sounds incredibly important and I truly wish I understood it…because I know I need to be worrying about all these things on my blog too….HELP!</p>]]>
    </content>
    <published>2010-02-02T13:10:25Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185082</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185082" />
    <title>Comment from Jay Bell on 2010-02-02</title>
    <author>
        <name>Jay Bell</name>
        <uri>http://jaybellbooks.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://jaybellbooks.com">
        <![CDATA[<p>Faster sounds good, but I would be happy if Facebook was simply stable. I may only be about 10% of the time that Facebook sputters and fails on me, but it's still annoying.</p>]]>
    </content>
    <published>2010-02-02T11:49:33Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185078</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185078" />
    <title>Comment from Σχολή Χορού on 2010-02-02</title>
    <author>
        <name>Σχολή Χορού</name>
        <uri>http://www.fuentedance.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.fuentedance.com/">
        <![CDATA[<p>I guess that's the end of the "Unresponsive Script Message" i often got when using facebook .... Just kidding of course. I will be one of the million beta testers.</p>]]>
    </content>
    <published>2010-02-02T11:33:09Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185076</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185076" />
    <title>Comment from Dan Cryer on 2010-02-02</title>
    <author>
        <name>Dan Cryer</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>@Bruce Wayne: In addition to Cassandra and Thrift, they also open sourced Hive DB, the SQL-like implementation for Hadoop. </p>]]>
    </content>
    <published>2010-02-02T11:24:15Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185058</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185058" />
    <title>Comment from Bediftsbasen on 2010-02-02</title>
    <author>
        <name>Bediftsbasen</name>
        <uri>http://www.bedriftsbasen.no</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.bedriftsbasen.no">
        <![CDATA[<p>This is good news, also their open source.</p>]]>
    </content>
    <published>2010-02-02T09:51:10Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185056</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185056" />
    <title>Comment from Autorii on 2010-02-02</title>
    <author>
        <name>Autorii</name>
        <uri>http://autorii.com/opere.php</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://autorii.com/opere.php">
        <![CDATA[<p>if facebook gets PHP compiler i have now the answer that php is better and faster than other.</p>]]>
    </content>
    <published>2010-02-02T09:50:20Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185055</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185055" />
    <title>Comment from Phil Sturgeon on 2010-02-02</title>
    <author>
        <name>Phil Sturgeon</name>
        <uri>http://philsturgeon.co.uk/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://philsturgeon.co.uk/">
        <![CDATA[<p>This is brilliant news. My first reaction was "WTF" but I can really see a benefit to the PHP community here.</p>

<p>Zend has been working on PHP for a long time now and with PHP 5.3 they have done some amazing things, but there is nothing much for us to look forward to with PHP 6. Most of the features intended for PHP 6 have made it into PHP 5.3 and it seems that Zend aren't really bringing us anything awesome.</p>

<p>Facebook have a fairly unique position to do this as they are the largest PHP web-site and get an insane amount of bandwidth. If they can improve PHP to be useful to them, the benefits will trickle down to us little folk and we'll have quicker websites too.</p>

<p>I look forward to seeing what else this HPHP will involve.</p>]]>
    </content>
    <published>2010-02-02T09:44:43Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185053</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185053" />
    <title>Comment from Warren Benedetto on 2010-02-02</title>
    <author>
        <name>Warren Benedetto</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>For those who are interested, Facebook actually has developed or significantly contributed to a ton of open-source projects: some big, some small. The official list is here: <a href="http://developers.facebook.com/opensource.php" rel="nofollow">http://developers.facebook.com/opensource.php</a></p>]]>
    </content>
    <published>2010-02-02T09:40:50Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185052</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185052" />
    <title>Comment from abhishek manocha on 2010-02-02</title>
    <author>
        <name>abhishek manocha</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>@Jennifer: what the heck was it a joke?</p>]]>
    </content>
    <published>2010-02-02T09:38:17Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185051</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185051" />
    <title>Comment from Diego Sana on 2010-02-02</title>
    <author>
        <name>Diego Sana</name>
        <uri>http://www.filtrie.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.filtrie.com">
        <![CDATA[<p>Facebook reported several times that they do use APC, there's lots of presentations all over the web of them talking how to optimize it. So, this new stuff ought to be better than APC.</p>]]>
    </content>
    <published>2010-02-02T09:36:44Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185050</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185050" />
    <title>Comment from abhishek manocha on 2010-02-02</title>
    <author>
        <name>abhishek manocha</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>@Jolie O'Dell: Thrift was already there in form of protobuf (developed at gooogle) but still I agree they opensourced it, forgot that.</p>

<p>havent heard of Cassandra, more light....</p>]]>
    </content>
    <published>2010-02-02T09:36:14Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185049</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185049" />
    <title>Comment from Jennifer on 2010-02-02</title>
    <author>
        <name>Jennifer</name>
        <uri>http://www.freexboxlivecodesnow.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.freexboxlivecodesnow.com/">
        <![CDATA[<p>That's good that Facebook is moving to PHP. Right my browser takes forever to load Facebook pages, which gets pretty annoying. Hope to try it soon.</p>]]>
    </content>
    <published>2010-02-02T09:28:06Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185048</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185048" />
    <title>Comment from kylehase on 2010-02-02</title>
    <author>
        <name>kylehase</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Aren't most of the other accelerators also chaching JIT compilers?  Wonder why FB decided to create their own in-house.</p>]]>
    </content>
    <published>2010-02-02T09:22:57Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185047</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185047" />
    <title>Comment from abhishek manocha on 2010-02-02</title>
    <author>
        <name>abhishek manocha</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>if this is real, i really appreciate facebook effeorts and congratulate them, but with no hope of "opensourcing" it, stop kidding ... cant expect from FB!</p>

<p>and to the memcache/eacclereator argument, well you never know, FB coders might have done only the things they require to fast on.... which might be better than memcache/eacclereator or at least diff... give credit where its due!</p>]]>
    </content>
    <published>2010-02-02T09:17:05Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185046</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185046" />
    <title>Comment from Dan Grossman on 2010-02-02</title>
    <author>
        <name>Dan Grossman</name>
        <uri>http://www.dangrossman.info</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.dangrossman.info">
        <![CDATA[<p>I'm also interested in how this differs (in implementation difficulty and performance) from an opcode cache. I only need to allocate ~14MB of RAM to APC to have a 100% cache hit rate, meaning no PHP file ever needs to be interpreted from source to serve a page unless I modify the code.</p>]]>
    </content>
    <published>2010-02-02T09:16:57Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185043</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185043" />
    <title>Comment from Jolie O&apos;Dell on 2010-02-02</title>
    <author>
        <name>Jolie O&apos;Dell</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>@Bruce Wayne - FB open sourced Thrift and Cassandra</p>]]>
    </content>
    <published>2010-02-02T09:12:26Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185040</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185040" />
    <title>Comment from bruce wayne on 2010-02-02</title>
    <author>
        <name>bruce wayne</name>
        <uri>http://www.factoetum.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.factoetum.com">
        <![CDATA[<p>"Facebook tends to build something big, use it, and open source it."</p>

<p>What is the big thing that Facebook has built and "opened sourced".....Is there something that they have "open sourced" that does not directly benefit them rather than leveling the playing field for everyone ?</p>

<p>Facebook should "Open" up the data that is owned and created by its members so that they have the ability to take it where ever they want.</p>

<p>Who do we cheer for in this game of closing  the internet </p>

<p>Do no evil illusionist vs Ayn Rands' spawn</p>]]>
    </content>
    <published>2010-02-02T09:04:38Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185036</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185036" />
    <title>Comment from wesley on 2010-02-02</title>
    <author>
        <name>wesley</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Can anyone tell me how this is different from a simple opcode cache like APC? (which will be included in PHP6) - I assume  the performance increase versus APC and this will be much lower.</p>]]>
    </content>
    <published>2010-02-02T08:58:23Z</published>
  </entry>

  <entry>
    <id>tag:www.readwriteweb.com,2010://1.18056-comment:185035</id>
    <thr:in-reply-to ref="tag:www.readwriteweb.com,2010://1.18056" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php"/>
    <link rel="alternate" type="text/html" href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php#c185035" />
    <title>Comment from John on 2010-02-02</title>
    <author>
        <name>John</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Can someone tell me the difference between this and say memcache/eaccelerator?</p>]]>
    </content>
    <published>2010-02-02T08:56:38Z</published>
  </entry>

</feed>
