Thursday, September 13, 2007

Compiled faster than scripted? Huh. Imagine that!

Just read this article about running PHP applications on Phalanger and found it greatly interesting that PHP apps are often quite a bit faster running on Phalanger than on the Zend engine.  In fact the article states that phpBB serves up pages twice as fast from Phalanger than from Zend.

Also interesting is the existence of a managed MySQL extension for Phalanger.  This appears to be based on libmysql however.

Phalanger works great on .NET but also works on Mono.  This makes it very easy to use C# (or any other CLR language) to write some layers of your app, like data access code, while allowing you to write the UI in PHP.  With Phalanger you use the full range of managed components like Connector/Net, LinQ, generics, custom attributes, events, and others.

3 comments:

  1. Where are the results from the benchmarks? Did they use any PHP cache?

    ReplyDelete
  2. I saw their benchmarks, it's interesting. The benchmark isn't directly comparable to roadsend's but the trend looks sort of similar. I wonder what the stability/reliability is like. Is this production ready?

    ReplyDelete
  3. Hi Andrey,

    as far as i can tell from

    http://www.phpcompiler.net/doku.php?id=core%3aphpbb-benchmark

    they were using the IIS SAPI and no bytecode cache whatsoever. So they are effectively comparing "compile once" against "compile every time" and not really execution speed.

    That aside: isn't FastCGI the recommended PHP SAPI these days instead of usin the IIS module?


    --
    hartmut

    ReplyDelete