Skip to content

Commit

Permalink
add a note about apc for php recent versions
Browse files Browse the repository at this point in the history
apc is not required for php5.5+, I suggest to mention it to avoid people trying to install it on recent php versions
  • Loading branch information
ip512 authored and wouterj committed Feb 19, 2015
1 parent e5dbd49 commit bab2a29
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions book/performance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ Use a Byte Code Cache (e.g. APC)
One of the best (and easiest) things that you should do to improve your performance
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. The most widely
used byte code cache is probably `APC`_
`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,
the most widely used byte code cache is probably `APC`_

Using a byte code cache really has no downside, and Symfony has been architected
to perform really well in this type of environment.
Expand Down

0 comments on commit bab2a29

Please sign in to comment.