<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>iBlog - Ilia Alshanetsky</title>
    <link>http://ilia.ws/</link>
    <description>Here be dragons.</description>
    <dc:language>en</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:" />
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    
    <image>
        <url>http://ilia.ws/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: iBlog - Ilia Alshanetsky - Here be dragons.</title>
        <link>http://ilia.ws/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Beware of the default Apache 2 config for PHP</title>
    <link>http://ilia.ws/archives/226-Beware-of-the-default-Apache-2-config-for-PHP.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/226-Beware-of-the-default-Apache-2-config-for-PHP.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=226</wfw:comment>

    <slash:comments>11</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=226</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    About a week ago, I was doing some upgrades on my development machine and came across a rather nasty issue when it comes to how .php(s) files are associated with PHP in Apache. It seems that a number of distros including Gentoo (which is what I was using) are using the following configuration directive to make the PHP module parse PHP files:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
&amp;lt;IfModule mod_mime.c&amp;gt;&lt;br /&gt;
       &lt;strong&gt;AddHandler&lt;/strong&gt; application/x-httpd-php .php&lt;br /&gt;
       &lt;strong&gt;AddHandler&lt;/strong&gt; application/x-httpd-php-source .phps&lt;br /&gt;
&amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
The non-obvious problem with the above is that it will allow not only &quot;file.php&quot; to be treated as PHP scripts, but also &quot;file.php.txt&quot;, which means that any file containing &quot;.php&quot; in its name, no matter where in the filename, would be treated as a PHP script. This of course creates a rather nasty security hole, since many  upload file validation tools, only check the final extension. Consequently allowing the user to by-pass the validation, by simply prefixing another &quot;harmless&quot; extension like .txt, .pdf, etc... to the filename, but still get the code to execute.&lt;br /&gt;
&lt;br /&gt;
To mitigate this problem you should instead use the following configuration, that would only pick-up of files ending with a .php extension.&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
&amp;lt;IfModule mod_mime.c&amp;gt;&lt;br /&gt;
       &lt;strong&gt;AddType&lt;/strong&gt; application/x-httpd-php .php&lt;br /&gt;
       &lt;strong&gt;AddType&lt;/strong&gt; application/x-httpd-php-source .phps&lt;br /&gt;
&amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
The difference between the two configurations being that the original uses AddHandler (bad) and the latter uses AddType (good). 
    </content:encoded>

    <pubDate>Mon, 30 Aug 2010 14:52:24 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/226-guid.html</guid>
    
</item>
<item>
    <title>PHP Excel Extension 0.8.6</title>
    <link>http://ilia.ws/archives/225-PHP-Excel-Extension-0.8.6.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/225-PHP-Excel-Extension-0.8.6.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=225</wfw:comment>

    <slash:comments>7</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=225</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    PHP Excel Extension 0.8.6&lt;br /&gt;
&lt;br /&gt;
The 0.8.6 version of the Excel extension was released and is now available for download. This version was updated to contain LibXL 3.0 support which introduces Excel 2007/2010 read/write support, which means that this extension can now read and generate any Excel file. Support for XSLX (2007/2010) format can be enabled by passing &quot;true&quot; as the 3rd parameter to the ExcelBook() construtor. &lt;br /&gt;
&lt;br /&gt;
GitHub: &lt;a href=&quot;http://github.com/iliaal/php_excel/&quot;&gt;http://github.com/iliaal/php_excel/&lt;/a&gt;&lt;br /&gt;
Source: &lt;a href=&quot;http://github.com/downloads/iliaal/php_excel/php-excel-0.8.6.tar.bz2&quot;&gt;http://github.com/downloads/iliaal/php_excel/php-excel-0.8.6.tar.bz2&lt;/a&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 27 Aug 2010 07:56:00 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/225-guid.html</guid>
    
</item>
<item>
    <title>PHP Excel Extension 0.8.5</title>
    <link>http://ilia.ws/archives/224-PHP-Excel-Extension-0.8.5.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/224-PHP-Excel-Extension-0.8.5.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=224</wfw:comment>

    <slash:comments>13</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=224</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    The 0.8.5 version of the Excel extension was released and is now available for download, it contains a number of small build fixes, which makes it possible to compile it against all versions of PHP (5.2,5.3,trunk). The Win32 compilation was also fixed and thanks to Kalle, PHP 5.3 win32 binaries are now available for download as well.&lt;br /&gt;
&lt;br /&gt;
GitHub: &lt;a href=&quot;http://github.com/iliaal/php_excel/&quot;&gt;http://github.com/iliaal/php_excel/&lt;/a&gt;&lt;br /&gt;
Source: &lt;a href=&quot;http://github.com/downloads/iliaal/php_excel/php-excel-0.8.5.tar.bz2&quot;&gt;http://github.com/downloads/iliaal/php_excel/php-excel-0.8.5.tar.bz2&lt;/a&gt;&lt;br /&gt;
Win32 Binaries: &lt;a href=&quot;http://github.com/downloads/iliaal/php_excel/php-excel-5.3.zip&quot;&gt;http://github.com/downloads/iliaal/php_excel/php-excel-5.3.zip&lt;/a&gt; 
    </content:encoded>

    <pubDate>Wed, 11 Aug 2010 15:27:02 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/224-guid.html</guid>
    
</item>
<item>
    <title>PHP Excel Extension</title>
    <link>http://ilia.ws/archives/222-PHP-Excel-Extension.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/222-PHP-Excel-Extension.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=222</wfw:comment>

    <slash:comments>12</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=222</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    Since I broke my right hand 3 weeks ago while biking, I found myself with a lot of spare time :/. It is amazing just how limited your ability to do things becomes when you can only use one hand. So, to stave off the boredom, I&#039;ve been slowly toiling away on a  PHP Excel extension that I intend to use at work, which I&#039;ve finally gotten ready for release today. &lt;br /&gt;
You can find it on github at: &lt;a href=&quot;http://github.com/iliaal/php_excel&quot;&gt;http://github.com/iliaal/php_excel&lt;/a&gt;.&lt;br /&gt;
 &lt;br /&gt;&lt;a href=&quot;http://ilia.ws/archives/222-PHP-Excel-Extension.html#extended&quot;&gt;Continue reading &quot;PHP Excel Extension&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 01 Aug 2010 14:06:11 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/222-guid.html</guid>
    
</item>
<item>
    <title>Google Docs Backup Script</title>
    <link>http://ilia.ws/archives/221-Google-Docs-Backup-Script.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/221-Google-Docs-Backup-Script.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=221</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=221</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    We are starting to use Google Docs quite a bit more at work and unsurprisingly the question of backup and offline availability comes into play. As part of the backup strategy we also wanted to capture incremental versions of the documents (on a daily basis) in the event we needed to go back to the prior versions.&lt;br /&gt;
&lt;br /&gt;
To this affect I whipped up a small (120 lines) PHP script that will retrieve all your Google documents and save them to a local directory, in the event the document was created/updated in the last 24 hours, thus ensuring snapshot support. Each file name is prefixed with Ymd (Year,month,day) prefix to ensure name uniqueness and provides an easy way to spot similar files or files that were created/updated on the same day. The script has just two dependancies, cURL and Simplexml extensions, which most PHP 5.0+ installs should have. &lt;br /&gt;
&lt;br /&gt;
I am publish the script for anyone with similar needs to use/improve under the BSD license...&lt;br /&gt;
&lt;br /&gt;
Enjoy.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Update&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
I&#039;ve made a few improvements to the script, some of which have been suggested by Philip (thanks), and since this looks to be an envolving project I&#039;ve put it into GitHub.&lt;br /&gt;
&lt;br /&gt;
Git Repository: &lt;a href=&quot;http://github.com/iliaal/Google-Docs-Backup&quot;&gt;http://github.com/iliaal/Google-Docs-Backup&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Here are the list of changes: &lt;br /&gt;&lt;a href=&quot;http://ilia.ws/archives/221-Google-Docs-Backup-Script.html#extended&quot;&gt;Continue reading &quot;Google Docs Backup Script&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Mon, 21 Jun 2010 11:19:07 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/221-guid.html</guid>
    
</item>
<item>
    <title>APC &amp; Memcache the High Performance Duo Slides</title>
    <link>http://ilia.ws/archives/219-APC-Memcache-the-High-Performance-Duo-Slides.html</link>
            <category>PHP</category>
            <category>Talks</category>
    
    <comments>http://ilia.ws/archives/219-APC-Memcache-the-High-Performance-Duo-Slides.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=219</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=219</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    My slides from the APC &amp;amp; Memcache the High Performance Duo talk at Dutch PHP Conference are now up and can be downloaded from &lt;a href=&quot;http://ilia.ws/files/Dutch_PHP_Conference_APC_MEM2010.pdf&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Thanks everyone for listening.&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sat, 12 Jun 2010 07:18:17 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/219-guid.html</guid>
    
</item>
<item>
    <title>APC &amp; Memcache the High Performance Duo Slides</title>
    <link>http://ilia.ws/archives/220-APC-Memcache-the-High-Performance-Duo-Slides.html</link>
            <category>PHP</category>
            <category>Talks</category>
    
    <comments>http://ilia.ws/archives/220-APC-Memcache-the-High-Performance-Duo-Slides.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=220</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=220</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    My slides from the APC &amp;amp; Memcache the High Performance Duo talk at Dutch PHP Conference are now up and can be downloaded from &lt;a href=&quot;http://ilia.ws/files/Dutch_PHP_Conference_APC_MEM2010.pdf&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Thanks everyone for listening.&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sat, 12 Jun 2010 07:18:17 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/220-guid.html</guid>
    
</item>
<item>
    <title>Optimization Mistakes Slides (Dutch PHP Conference)</title>
    <link>http://ilia.ws/archives/218-Optimization-Mistakes-Slides-Dutch-PHP-Conference.html</link>
            <category>PHP</category>
            <category>Talks</category>
    
    <comments>http://ilia.ws/archives/218-Optimization-Mistakes-Slides-Dutch-PHP-Conference.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=218</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=218</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    My slides for the &quot;Common Optimization Mistakes&quot; at the Dutch PHP Conference are now available &lt;a href=&quot;http://ilia.ws/files/Dutch_PHP_Conference_2010_OPM.pdf&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Thanks everyone for listening, I wish there was a little bit more time to allow for questions... 
    </content:encoded>

    <pubDate>Fri, 11 Jun 2010 06:00:37 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/218-guid.html</guid>
    
</item>
<item>
    <title>Scalar Type Hints are Here!</title>
    <link>http://ilia.ws/archives/217-Scalar-Type-Hints-are-Here!.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/217-Scalar-Type-Hints-are-Here!.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=217</wfw:comment>

    <slash:comments>15</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=217</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    About an hour ago, something I&#039;ve been fighting for almost 2 years happened. The Scalar Type Hinting patch for PHP (&lt;a href=&quot;http://ilia.ws/patch/type_hint_final.txt&quot;&gt;the one I wrote almost a year ago&lt;/a&gt;) has been adjusted for PHP&#039;s trunk tree and &lt;a href=&quot;http://svn.php.net/viewvc?view=revision&amp;revision=299534&quot;&gt;committed&lt;/a&gt; by &lt;a href=&quot;http://derickrethans.nl/&quot;&gt;Derick&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Thanks to Derick for taking the time (when I didn&#039;t) to prep the patch for trunk and make this happen &lt;img src=&quot;http://ilia.ws/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 20 May 2010 16:15:05 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/217-guid.html</guid>
    
</item>
<item>
    <title>DevConf Slides</title>
    <link>http://ilia.ws/archives/216-DevConf-Slides.html</link>
            <category>PHP</category>
            <category>Talks</category>
    
    <comments>http://ilia.ws/archives/216-DevConf-Slides.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=216</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=216</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    The slides from my talk at DevConf in Moscow are now up and can be downloaded &lt;a href=&quot;http://ilia.ws/files/Moscow2010_Optimization_Mistakes.pdf&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Probably the biggest, or at the very minimum the 2nd biggest audience I&#039;ve had a PHP Conference and the first time I had to give a PHP talk in Russian (with occasional slippage into English ;-p).&lt;br /&gt;
&lt;br /&gt;
Seemed to go pretty well. 
    </content:encoded>

    <pubDate>Mon, 17 May 2010 04:35:35 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/216-guid.html</guid>
    
</item>
<item>
    <title>ConFoo PHP 5.3 == Awesome! Slides</title>
    <link>http://ilia.ws/archives/214-ConFoo-PHP-5.3-Awesome!-Slides.html</link>
            <category>PHP</category>
            <category>Talks</category>
    
    <comments>http://ilia.ws/archives/214-ConFoo-PHP-5.3-Awesome!-Slides.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=214</wfw:comment>

    <slash:comments>6</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=214</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    Finally managed to upload my slides from my ConFoo PHP 5.3 == Awesome! talk. &lt;br /&gt;
&lt;a href=&quot;http://ilia.ws/files/Confoo2010_PHP53.pdf&quot;&gt;Slides&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Thanks for all the attendees, especially those who asked questions &lt;img src=&quot;http://ilia.ws/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 11 Mar 2010 09:06:20 -0500</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/214-guid.html</guid>
    
</item>
<item>
    <title>My Thoughts on HipHop </title>
    <link>http://ilia.ws/archives/213-My-Thoughts-on-HipHop.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/213-My-Thoughts-on-HipHop.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=213</wfw:comment>

    <slash:comments>17</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=213</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    To paraphrase &lt;a href=&quot;http://blog.tabini.ca/2010/02/hiphop-what-you-need-to-know/&quot;&gt;Marco Tabini&lt;/a&gt; if you work with PHP you must be doing so in a pretty deep cave to have not heard of &lt;a href=&quot;http://developers.facebook.com/news.php?blog=1&amp;story=358&quot;&gt;HipHop for PHP&lt;/a&gt; and the fervor around it the prior to its official announcement this morning by Facebook. &lt;br /&gt;
&lt;br /&gt;
I had a fortune to be part of the small group of PHP community people who were invited to take a peak at its technology prior to its official release in January.  And I must admit it had been quite amusing to read some of the &lt;a href=&quot;http://sdtimes.com/blog/post/2010/01/30/Facebook-rewrites-PHP-runtime.aspx&quot;&gt;conjectures&lt;/a&gt; people were making about what it actually, given how off the mark most of their guesses were.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;So what is HipHop?&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
In the tersest of terms HipHop is a tool that converts PHP code into C++ code that when combined with a PHP compatible engine and extensions (ports of some native PHP extensions Facebook uses) library also written in C++ can be compiled using GCC into a binary. This binary can then be ran on a command line or as a web server daemon that utilizes &lt;a href=&quot;http://www.monkey.org/~provos/libevent/&quot;&gt;libevent&lt;/a&gt;. According to Facebook this can speed up applications by up to 50%, which is a pretty impressive improvement.&lt;br /&gt;
&lt;br /&gt;
It is not entirely surprising that world&#039;s largest PHP deployment, such as Facebook would look at solution that would allow them to halve their not inconsiderable count of servers or double capacity. Releasing this solution as Open Source is I think a great idea, and big kudos to Facebook for doing so.&lt;br /&gt;
&lt;br /&gt;
From a technical perspective the PHP optimization approach of converting PHP into a compiled language is not a completely new one, &lt;a href=&quot;http://www.roadsend.com/home/index.php&quot;&gt;Roadsend&lt;/a&gt; compiler, a commercial product has been around for a few years now and has been doing that with some degree of success. That said it is not a trivial task and from an engineering perspective presents a fairly tricky development challenge, especially when you want to allow regular, off-the-self scripts to work. Perhaps more importantly, HipHop not a theoretical solution, &quot;for you to test&quot;, it actually works, with most of the Facebook&#039;s servers running it and doing it well, on millions of lines of converted PHP code on daily basis, very impressive.&lt;br /&gt;
&lt;br /&gt;
At this point you are probably thinking, that if it is so great and it works, I&#039;ll deploy it on my servers as soon as I can get my hands on the source code. Well, unfortunately things are not quite so simple, there are few technical and deployment challenges you need to overcome. &lt;br /&gt;&lt;a href=&quot;http://ilia.ws/archives/213-My-Thoughts-on-HipHop.html#extended&quot;&gt;Continue reading &quot;My Thoughts on HipHop &quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Tue, 02 Feb 2010 16:47:46 -0500</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/213-guid.html</guid>
    
</item>
<item>
    <title>Speaking at Confoo</title>
    <link>http://ilia.ws/archives/212-Speaking-at-Confoo.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/212-Speaking-at-Confoo.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=212</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=212</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    I will be speaking again this year at PHP Quebec conference, which has now been renamed to &lt;a href=&quot;http://confoo.ca/en/&quot;&gt;Confoo&lt;/a&gt; and covers many more topics then just PHP, which should make things even more interesting. With over 100 talks things looks to be an amazing conference, my own talk with cover &lt;a href=&quot;http://confoo.ca/en/2010/session/php-5-3-awesome&quot;&gt;PHP 5.3 awesomeness&lt;/a&gt; &lt;img src=&quot;http://ilia.ws/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Tue, 26 Jan 2010 08:16:19 -0500</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/212-guid.html</guid>
    
</item>
<item>
    <title>Igbinary, The great serializer</title>
    <link>http://ilia.ws/archives/211-Igbinary,-The-great-serializer.html</link>
            <category>PHP</category>
    
    <comments>http://ilia.ws/archives/211-Igbinary,-The-great-serializer.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=211</wfw:comment>

    <slash:comments>12</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=211</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    If you are using PHP, chances are that at some point you needed to serialize PHP data, whether it was transparently done for you inside the PHP&#039;s session handler or directly so that complex PHP data types (objects &amp;amp; arrays) could be stored in DB or files, most people have done this.&lt;br /&gt;
&lt;br /&gt;
The default way of doing it is via a native PHP serializer, which creates a clear-text version of the data, which if you are serializing a fair bit of information ends up being rather verbose (read: BIG). This means that you end up having to store more data in memory, read more data from disk, etc... all of which slow down your application. As I was reading docs on &lt;a href=&quot;http://zmievski.org/&quot;&gt;Andrei&#039;s&lt;/a&gt; new memcache extension (&lt;a href=&quot;http://pecl.php.net/package/memcached&quot;&gt;memcached&lt;/a&gt;) I came across a binary serialization extension called &lt;a href=&quot;http://opensource.dynamoid.com/&quot;&gt;Igbinary&lt;/a&gt; written by Sulake Dynamoid Oy. This extension promised much more optimal serialization routines by using binary, rather then a clear text format. Sounded, good so I decided to run a few benchmarks on it. &lt;br /&gt;
 &lt;br /&gt;&lt;a href=&quot;http://ilia.ws/archives/211-Igbinary,-The-great-serializer.html#extended&quot;&gt;Continue reading &quot;Igbinary, The great serializer&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Thu, 19 Nov 2009 11:05:41 -0500</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/211-guid.html</guid>
    
</item>
<item>
    <title>APC &amp; Memcache the High Performance Duo Slides</title>
    <link>http://ilia.ws/archives/210-APC-Memcache-the-High-Performance-Duo-Slides.html</link>
            <category>PHP</category>
            <category>Talks</category>
    
    <comments>http://ilia.ws/archives/210-APC-Memcache-the-High-Performance-Duo-Slides.html#comments</comments>
    <wfw:comment>http://ilia.ws/wfwcomment.php?cid=210</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://ilia.ws/rss.php?version=2.0&amp;type=comments&amp;cid=210</wfw:commentRss>
    

    <author>ilia@ilia.ws (Ilia Alshanetsky)</author>
    <content:encoded>
    My slides from the &quot;APC &amp;amp; Memcache the High Performance Duo&quot; talk are now online and can be found &lt;a href=&quot;http://ilia.ws/files/ZendCon2009_APC_Memcache.pdf&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
In the slide I mentioned that memcache is available of *NIX only, which thanks to at least two attendees I know to be incorrect. It appears that there is a working (albeit old, circa 2006) memcache win32 version, which you can find here:&lt;br /&gt;
&lt;a href=&quot;http://jehiah.cz/projects/memcached-win32/&quot;&gt;http://jehiah.cz/projects/memcached-win32/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Once you install it, you&#039;d need to compile memcache PHP extension on win32 and then you should be set. 
    </content:encoded>

    <pubDate>Wed, 21 Oct 2009 17:03:08 -0400</pubDate>
    <guid isPermaLink="false">http://ilia.ws/archives/210-guid.html</guid>
    
</item>

</channel>
</rss>