Skip to content

Commit 9eca04b

Browse files
committed
Minor rewording
1 parent bab2a29 commit 9eca04b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

book/performance.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ One of the best (and easiest) things that you should do to improve your performa
1919
is to use a "byte code cache". The idea of a byte code cache is to remove
2020
the need to constantly recompile the PHP source code. There are a number of
2121
`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,
22+
PHP 5.5 or higher, `OPcache`_ is built-in into PHP runtime. For older versions,
2323
the most widely used byte code cache is probably `APC`_
2424

2525
Using a byte code cache really has no downside, and Symfony has been architected
@@ -140,6 +140,7 @@ feature is disabled in the byte code cache (e.g. ``apc.stat=0`` in APC), there
140140
is 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

Comments
 (0)