View Single Post
  #46 (permalink)  
Old 11-08-2007, 03:54 AM
Gopisoft Gopisoft is offline
D-Web Sr.Programmer
 
Join Date: Feb 2007
Posts: 117
Gopisoft is on a distinguished road
Default 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.
Attached Images
File Type: jpg php_opcode.JPG (17.5 KB, 11 views)
Reply With Quote