PHP5 加速模块OPcache

PHP5.5以后内部集成了Zend Opcache功能缓存速度比APC、eAccelerator、XCache更快

因为小弟安装的LNMP环境PHP是5.4 所以直接安装

安装

yum -y install php-opcache

安装完成后,opcache的配置文件

/etc/php.d/opcache.ini

配置

opcache.memory_consumption=512

opcache.max_accelerated_files=50000

opcache.revalidate_freq=864000

opcache.enable_file_override=1

opcache.force_restart_timeout=30

#其他配置数值默认就好

至此PHP 加速配置完毕


你可能感兴趣的:(opcache)