Files
archived-presentations/slides/acc_php/opcode_intro.xml
2004-05-07 14:26:55 +00:00

15 lines
443 B
XML

<slide title="OPcode Caching">
<blurb fontsize="4em">
The first step in the script execution is the conversion of said script into
a series instructions (opcodes), which the Zend Engine can understand and run.
</blurb>
<image filename="cache.jpg" align="center" />
<blurb fontsize="4em">
Since scripts rarely change, an obvious optimization is to cache the opcodes so
that the scripts do not need to be parsed every time.
</blurb>
</slide>