@@ -84,17 +84,14 @@ PHP 8.4 UPGRADE NOTES
84
84
which is why it throws an exception nowadays.
85
85
86
86
- Opcache:
87
- . JIT config defaults changed from
88
- `opcache.jit=tracing`, `opcache.jit_buffer_size=0` to
89
- `opcache.jit=disable`, `opcache.jit_buffer_size=64M`:
90
- this does not change the default behavior,
91
- JIT was and still is disabled by default, however
92
- now it is now disabled by default
93
- using the `opcache.jit` setting, not the `opcache.jit_buffer_size` setting.
94
- This may affect users who enabled JIT by only setting a different
95
- `opcache.jit_buffer_size`, without specifying a JIT mode
96
- in `opcache.jit`.
97
- To enable JIT, you should now populate the `opcache.jit` config value.
87
+ . The JIT config defaults changed from opcache.jit=tracing and
88
+ opcache.jit_buffer_size=0 to opcache.jit=disable and
89
+ opcache.jit_buffer_size=64M, respectively. This does not affect the default
90
+ behavior, the JIT is still disabled by default. However, it is now disabled
91
+ through the opcache.jit setting, rather than opcache.jit_buffer_size. This
92
+ may affect users who previously enabled JIT through opcache.jit_buffer_size
93
+ exclusively, without also specifying a JIT mode using opcache.jit. To enable
94
+ JIT, set the opcache.jit config value accordingly.
98
95
99
96
========================================
100
97
2. New Features
0 commit comments