PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I read the roadsend site. tried searching for compiling here but only got responses about compiling php with apache and the like. What I want to know is it worth while to consider compiling php code onto a apache server, worth the time and investment. Is there the open source linux flavour yet.
General opinions on whether it is worth it for web site development.
I'm fairly doubtful of seeing a linux OSS version soon.. It can be worth it, IF you need execution to be as fast as they can translate the php into byte code.. I'm somewhat doubtful of their ability to create high-speed versions of code when compared to ones written in C doing the same things. So my recommendation is, if you need the speed maximized, write it in C natively. No round about crap, it'll generally bite you in the ass as that will likely be your bottleneck.
You could go a step further and use Assembly. However, since experience is critical to getting asm to run real fast, it's probably better to use a really good optimizing C compiler.