Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions reference/opcache/ini.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 8ea24dc32374bf4f6b04005e317101e4c65a0214 Maintainer: yannick Status: ready -->
<!-- EN-Revision: f2cdcd5af4558c22db95463b6ccdd25e4cea3cf5 Maintainer: lacatoire Status: ready -->
<!-- Reviewed: no -->
<sect1 xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="opcache.configuration">
&reftitle.runtime;
Expand Down Expand Up @@ -307,9 +307,9 @@
</row>
<row>
<entry><link linkend="ini.opcache.jit-hot-loop">opcache.jit_hot_loop</link></entry>
<entry>"64"</entry>
<entry>"61"</entry>
<entry><constant>INI_SYSTEM</constant></entry>
<entry>Disponible à partir de PHP 8.0.0</entry>
<entry>Disponible à partir de PHP 8.0.0. Avant PHP 8.5.0, la valeur par défaut était 64</entry>
</row>
<row>
<entry><link linkend="ini.opcache.jit-hot-func">opcache.jit_hot_func</link></entry>
Expand Down Expand Up @@ -1349,6 +1349,12 @@ function getA() { return A; }
pour tout paramètre hors de cette plage, par exemple -1 ou 256, la valeur par défaut sera utilisée à la place.
Spécialement, une valeur nulle désactivera le JIT pour tracer et compiler toutes les boucles.
</simpara>
<note>
<simpara>
Il est recommandé de définir ce paramètre comme un nombre premier,
afin d'éviter qu'il ne soit un multiple du nombre d'itérations des boucles.
</simpara>
</note>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.opcache.jit-hot-func">
Expand Down
Loading