标签:XML lock validate grep amp 命令 alt down 参数
Zend OPCache 的前身是Zend Optimizer + (Zend O+),于 2013年3月中旬改名为 Opcache。其通过 opcode 缓存和优化提供更快的 PHP 执行过程。它将预编译的脚本文件存储在共享内存中供以后使用,从而避免了从磁盘读取代码并进行编译的时间消耗。同时,它还应用了一些代码优化模式,使得代码执行更快。
PHP 在5.5发行版后自带了Zend OPCache扩展,编译的时候加上--enable-opcache就行了,PHP5.2,5.3,5.4版也可以使用,但需要自行下载扩展。
http://pecl.php.net/package/ZendOpcache
cd /a01/apps/apps_src/php-7.1.7
可以在phpinfo中查看,也可以以下命令
/a01/apps/php7/bin/php -i | grep configure
./configure --prefix=/a01/apps/php7 --with-config-file-path=/etc/php --with-mcrypt --enable-fpm --with-fpm-user=www --with-fpm-group=www --enable-mysqlnd --with-mysqli --with-pdo-mysql --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-libxml-dir --disable-rpath --enable-bcmath --enable-inline-optimization --with-curl --enable-mbstring --with-mhash --with-gd --with-openssl --enable-zip --with-bz2 --enable-ftp --with-gettext --enable-opcache
报错
解决
export LD_LIBRARY_PATH=/lib/:/usr/lib/:/usr/local/lib
make && make install
[opcache]
zend_extension=opcache.so
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
opcache.enable_cli=1
systemctl restart php-fpm
cd /a01/apps/apps_src/
wget http://pecl.php.net/get/zendopcache-7.0.5.tgz
tar zxvf zendopcache-7.0.5.tgz
cd zendopcache-7.0.5
/a01/apps/php/bin/phpize
./configure --with-php-config=/a01/apps/php/bin/php-config
make && make install
[opcache]
zend_extension=opcache.so
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
systemctl restart php-fpm
标签:XML lock validate grep amp 命令 alt down 参数
原文地址:https://www.cnblogs.com/93bok/p/9684204.html