From 2ba6e473de4a6f67ff86e1d9d3155531f46e4f9a Mon Sep 17 00:00:00 2001 From: Sumit Chahal Date: Sat, 16 Feb 2019 16:44:21 +0530 Subject: [PATCH] Change APC to OPcache in improving-performance.rst OPcache is a lot better supported now than APC, which is apparently not maintained anymore. --- docs/en/reference/improving-performance.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/reference/improving-performance.rst b/docs/en/reference/improving-performance.rst index d19b6947732..23767a2f861 100644 --- a/docs/en/reference/improving-performance.rst +++ b/docs/en/reference/improving-performance.rst @@ -4,7 +4,7 @@ Improving Performance Bytecode Cache -------------- -It is highly recommended to make use of a bytecode cache like APC. +It is highly recommended to make use of a bytecode cache like OPcache. A bytecode cache removes the need for parsing PHP code on every request and can greatly improve performance.