Skip to content

Commit bab2a29

Browse files
ip512wouterj
authored andcommitted
add a note about apc for php recent versions
apc is not required for php5.5+, I suggest to mention it to avoid people trying to install it on recent php versions
1 parent e5dbd49 commit bab2a29

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

book/performance.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ Use a Byte Code Cache (e.g. APC)
1818
One of the best (and easiest) things that you should do to improve your performance
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
21-
`byte code caches`_ available, some of which are open source. The most widely
22-
used byte code cache is probably `APC`_
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`_
2324

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

0 commit comments

Comments
 (0)