
11-08-2007, 03:54 AM
|
| D-Web Sr.Programmer | | Join Date: Feb 2007
Posts: 117
| |
Re: PHP Optimization Tips Hi, Compiler/Opcode Caches - This cycle happens for every include file, not just for the "main" script.
- Compilation can easily consume more time than execution.
- Each PHP script is compiled only once for each revision.
- Reduced File IO, opcodes are being read from memory instead of being parsed from disk.
- Opcodes can optimised for faster execution.
Thanks,
R.Gopi. |