ensure JIT is disabled

It was disabled by default (jit_buffer_size=0 by default), but this setting makes sure JIT is unavailable at runtime. While JIT may bring minor performance improvements, this is not worth the risk of being exposed to tons of bugs due to JIT code complexity.
This commit is contained in:
Wonderfall 2022-03-15 17:04:53 +01:00 committed by hoellen
parent 8c11184ba1
commit 1ffd446214

View File

@ -6,3 +6,5 @@ opcache.memory_consumption=<OPCACHE_MEM_SIZE>
opcache.interned_strings_buffer=16
opcache.max_accelerated_files=10000
opcache.revalidate_freq=60
opcache.jit=disable
opcache.jit_buffer_size=0