I searched on the Web and came to know that PHP code can be compiled to have performance boost. But how to do it? Can I compile both procedural and object oriented PHP code?
|
The basic idea, when executing a PHP script is in two steps :
To prevent that redundant-compilation, there are some opcode caching mechanism that you can use. Once the PHP script has been compiled to opcodes, those will be kept in RAM -- and directly used from memory the next time the script is to be executed ; preventing the compilation from being done again and again.
Once APC has been installed and configured properly, there is nothing you have to modify in your PHP code : APC will cache the opcodes, and that is all -- the process is totally invisible for your application. |
|||||||||||||||||
|
Easy. Easiest way to determine if you need opcode cache or not would be just putting this line at the very top of your most used page
and this line at the very end:
if time is more than |
|||||||||
|