Home > php教程 > php手册 > PHP Opcache安装和配置方法介绍

PHP Opcache安装和配置方法介绍

WBOY
Release: 2016-06-06 20:03:51
Original
1024 people have browsed it

这篇文章主要介绍了PHP Opcache安装和配置方法介绍,Opcache的安装需要在编译时加上enable-opcache即可,本文着重讲解配置方法,需要的朋友可以参考下

本文针对PHP5.5等高级版本,编译时需要加上--enable-opcache参数

编译安装完成后,,我们开始配置Opcache

复制代码 代码如下:


[Opcache]
zend_extension = opcache.so
opcache.enable=1
opcache.memory_consumption = 64
opcache.interned_strings_buffer = 8
opcache.max_accelerated_files = 4000
opcache.revalidate_freq = 60
opcache.fast_shutdown = 1
opcache.enable_cli = 1


修改后重启PHP-FPM

复制代码 代码如下:


service php-fpm restart


最后上个图

PHP Opcache安装和配置方法介绍


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template