Marcus submitted a new resource:
Enable PHP JIT - Enabling JIT makes PHP 8.x run faster
Read more about this resource...
Читать далее...
Enable PHP JIT - Enabling JIT makes PHP 8.x run faster
Enabling JIT makes PHP run faster
1 Check whether JIT is running
Bash:
#php -i | grep -q 'opcache.jit_buffer_size => [^0]' && echo "JIT is enabled" || echo "JIT is disabled"
2 In etc/config.php
PHP:
Click to expand...Код:ini_set('opcache.enable', '1'); ini_set('opcache.jit_buffer_size', '100M'); ini_set('opcache.jit', '1254');
Read more about this resource...
Читать далее...