top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

PHP compiler - HipHop performance

0 votes
430 views

I have downloaded HipHop for my website, I am going through various web links which are suggesting that performance will improve 3-6 times. However I don't know the Stability of the HipHop.

Please provide your inputs so that I can decide to use HipHop.

posted Apr 26, 2013 by Salil Agrawal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
Well. HipHop runs the backend of facebook.com AFAIK. Howbout that stability. ...

2 Answers

+1 vote
 
Best answer

When I tried it I was amazed by the performance impact.
Just create yourself a PHP file that does 100.000 calculations and
compare the php execution vs. the native compiled one. That is awesome!

The drawback is, that hiphop does not support every php extension and
that it really takes some time to compile a really big framework.
If you have some code that you want to speed up and it can seperated
from the rest, then create a smaller module out of it and compile that.

Or think about creating own PECL extensions.

answer Apr 26, 2013 by anonymous
0 votes

I looked into HipHop once, and I decided not to use it, I felt that there are other ways of improving performance. Having said that, it really depends on what your running IE wordpress, phpbb, mybb etc.

I rather install some cache plugin for wordpress and install something like xcache but that just me though.

answer Apr 26, 2013 by anonymous
Similar Questions
0 votes

My webcode written in PHP and it is running in the interpreted way. My problem is it is not giving the desired performance so want to try the compiler if any.
Please suggest if we have any compiler option available for the PHP code and more important is this new option.

0 votes

What is the use for this?Any one clear my doubt please.I need to know HIPHOP

+10 votes

I want to save a password in encrypted form, so that it will not be understand by human. Is it possible ? If yes then please explain briefly.

+1 vote

I have a web application written in PHP. It have been running for several years. Now I want to run it as a stand-alone application on an Android smartphone or tablet. How can I do it?

0 votes

I am having an string which was have few ' (single quote) and few " (double quotes) and was not able to insert into the mysql database. I have replaced them with \' and \" and everything is fine.
Though this are fine now but don't understand the working and I could have missed few corner cases also. Please suggest the working and also if there is some better way to achieve this.

...