As to the Fibonacci numbers: I don't have it but it would be something along the lines of: function fib($n) { if ($n <= 1) { return $n; } else { return fib($n - 1) + fib($n - 2); } } $n = 30; $r = fib($n); echo…
I used the php.ini file that comes bundled with the sources. I just think after I ran the benchmark the first time, I enabled opcode cache explicitly just to be sure. I used the Wordpress setup that comes in the…
The only other place where I could have possibly screwed up the results is compilation. I had to build PHP from source, since I wanted to have the "latest greatest" and CentOS has dated packages at times. Though again,…
Hi, my name is Julius and I performed the said benchmark while being an intern at FB. Yes, we used opcode cache in PHP. I definitely don't consider myself to be an expert on PHP configuration. I used the default…
As to the Fibonacci numbers: I don't have it but it would be something along the lines of: function fib($n) { if ($n <= 1) { return $n; } else { return fib($n - 1) + fib($n - 2); } } $n = 30; $r = fib($n); echo…
I used the php.ini file that comes bundled with the sources. I just think after I ran the benchmark the first time, I enabled opcode cache explicitly just to be sure. I used the Wordpress setup that comes in the…
The only other place where I could have possibly screwed up the results is compilation. I had to build PHP from source, since I wanted to have the "latest greatest" and CentOS has dated packages at times. Though again,…
Hi, my name is Julius and I performed the said benchmark while being an intern at FB. Yes, we used opcode cache in PHP. I definitely don't consider myself to be an expert on PHP configuration. I used the default…