@@ -18,9 +18,9 @@ Use a Byte Code Cache (e.g. APC)
1818One of the best (and easiest) things that you should do to improve your performance
1919is to use a "byte code cache". The idea of a byte code cache is to remove
2020the need to constantly recompile the PHP source code. There are a number of
21- `byte code caches `_ available, some of which are open source. If you are using
22- PHP 5.5 or more, the byte code cache is built-in into PHP runtime . For older versions,
23- the most widely used byte code cache is probably `APC `_
21+ `byte code caches `_ available, some of which are open source. As of PHP 5.5,
22+ PHP comes with ` OPcache `_ built-in. For older versions, the most widely used
23+ byte code cache is probably `APC `_
2424
2525Using a byte code cache really has no downside, and Symfony has been architected
2626to perform really well in this type of environment.
@@ -140,6 +140,7 @@ feature is disabled in the byte code cache (e.g. ``apc.stat=0`` in APC), there
140140is no longer a reason to use a bootstrap file.
141141
142142.. _`byte code caches` : http://en.wikipedia.org/wiki/List_of_PHP_accelerators
143+ .. _`OPcache` : http://php.net/manual/en/book.opcache.php
143144.. _`APC` : http://php.net/manual/en/book.apc.php
144145.. _`autoload.php` : https://github.com/symfony/symfony-standard/blob/master/app/autoload.php
145146.. _`bootstrap file` : https://github.com/sensio/SensioDistributionBundle/blob/master/Composer/ScriptHandler.php
0 commit comments