我想为Drupal 8安装启用PHP OPcode缓存。我在Xampp php.ini 中具有以下内容。但是,我仍然没有启用操作码。我究竟做错了什么??

opcache.enable=1

engine = On
zend_extension=php_opcache.dll


opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable_cli=1

最佳答案

这是关于OPCache的不错的文章:
How to use PHP OPCache?

这是使用XAMPP的localhost的:
https://www.drupal.org/node/2623566

10-08 11:27