How To Enable PHP OPcode Caching for Drupal 8 Step By Step By Beginner


How To Enable PHP OPcode caching for Drupal 8 On Xampp Server Step By Step By Beginner. Just open your Xampp Control Panel then Ppen config -> php.ini then just copy this code and paste it below on the php.ini file.

[opcache] zend_extension=php_opcache.dll 
;Determines if Zend OPCache in enabled 
opcache.enable=1 
opcache.memory_consumption=128 
opcache.interned_strings_buffer=8 
opcache.max_accelerated_files=4000 
opcache.revalidate_freq=60 
opcache.fast_shutdown=1

for more information about PHP OPcode Caching manual setting go to the main site : https://php.net/manual/en/opcache.installation.php

Comments