Skip to content

Commit

Permalink
Minor rewording
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterj committed Feb 19, 2015
1 parent bab2a29 commit 9eca04b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion book/performance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ One of the best (and easiest) things that you should do to improve your performa
is to use a "byte code cache". The idea of a byte code cache is to remove
the need to constantly recompile the PHP source code. There are a number of
`byte code caches`_ available, some of which are open source. If you are using
PHP 5.5 or more, the byte code cache is built-in into PHP runtime. For older versions,
PHP 5.5 or higher, `OPcache`_ is built-in into PHP runtime. For older versions,
the most widely used byte code cache is probably `APC`_

Using a byte code cache really has no downside, and Symfony has been architected
Expand Down Expand Up @@ -140,6 +140,7 @@ feature is disabled in the byte code cache (e.g. ``apc.stat=0`` in APC), there
is no longer a reason to use a bootstrap file.

.. _`byte code caches`: http://en.wikipedia.org/wiki/List_of_PHP_accelerators
.. _`OPcache`: http://php.net/manual/en/book.opcache.php
.. _`APC`: http://php.net/manual/en/book.apc.php
.. _`autoload.php`: https://github.com/symfony/symfony-standard/blob/master/app/autoload.php
.. _`bootstrap file`: https://github.com/sensio/SensioDistributionBundle/blob/master/Composer/ScriptHandler.php

0 comments on commit 9eca04b

Please sign in to comment.