Slide 42
Slide 42 text
PHP has been using opcode caches for
ages (APC, Turck MMCache, Zend
OpCache). They achieve significant
performance boost by ALMOST
completely eliminating the overhead of
PHP code recompilation. With an opcode
cache, files are compiled once (on the first
request that uses them), and are then
stored in shared memory. All the
following HTTP requests use the
representation cached in shared memory.