From a445c80695fa60184fe8addf195f6e1c2296d950 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Wed, 19 Oct 2022 10:23:14 -0700 Subject: [PATCH] Add JIT to server tuning Signed-off-by: Varun Patil --- admin_manual/installation/server_tuning.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/admin_manual/installation/server_tuning.rst b/admin_manual/installation/server_tuning.rst index c35c151f2..0dd880044 100644 --- a/admin_manual/installation/server_tuning.rst +++ b/admin_manual/installation/server_tuning.rst @@ -124,6 +124,13 @@ Any change to ``config.php`` will then require either restarting PHP, manually c For more details check out the `official documentation `_. To monitor OPcache usage, clear individual or all cache entries, `opcache-gui `_ can be used. +PHP 8.0 and above ship with a JIT compiler that can be enabled to benefit any CPU intensive apps you might be running. To enable a tracing JIT with all optimizations: + +.. code:: ini + + opcache.jit = 1255 + opcache.jit_buffer_size = 128M + Previews --------