@@ -18,9 +18,9 @@ Use a Byte Code Cache (e.g. APC)
18
18
One of the best (and easiest) things that you should do to improve your performance
19
19
is to use a "byte code cache". The idea of a byte code cache is to remove
20
20
the 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 `_
24
24
25
25
Using a byte code cache really has no downside, and Symfony has been architected
26
26
to 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
140
140
is no longer a reason to use a bootstrap file.
141
141
142
142
.. _`byte code caches` : http://en.wikipedia.org/wiki/List_of_PHP_accelerators
143
+ .. _`OPcache` : http://php.net/manual/en/book.opcache.php
143
144
.. _`APC` : http://php.net/manual/en/book.apc.php
144
145
.. _`autoload.php` : https://github.com/symfony/symfony-standard/blob/master/app/autoload.php
145
146
.. _`bootstrap file` : https://github.com/sensio/SensioDistributionBundle/blob/master/Composer/ScriptHandler.php
0 commit comments