debian php中如何启用OPcache

avatar
作者
猴君
阅读量:0

要在Debian上启用OPcache,您需要安装PHP的OPcache扩展并进行相关配置。以下是具体步骤:

  1. 安装OPcache扩展:
sudo apt-get update sudo apt-get install php-opcache 
  1. 打开php.ini文件并进行配置:
sudo nano /etc/php/7.4/apache2/php.ini 

在php.ini文件中找到以下行并取消注释(删除前面的分号):

zend_extension=opcache.so 

可以根据需要设置OPcache的其他配置项,如:

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 
  1. 重启Apache服务器以使更改生效:
sudo systemctl restart apache2 

现在OPcache已经启用并配置完成,您可以在PHP脚本中使用OPcache来提高性能。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!