码迷,mamicode.com
首页 > Web开发 > 详细

加速器eaccelerator不兼容高版本php

时间:2015-08-26 15:15:12      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

话说PHP官方发布PHP5.4已经有一阵了,根据使用的情况来看,似乎还是很不错的。从初始发布到现在升级到的PHP5.4.4,修正不少的Bug。PHP5.4新的版本,除了提供了更多新的特性,还有大幅的效率提升。这个版本趋于稳定之后,我决定把我的服务器升级到PHP5.4.4。

服务器上的软件包,一直以来都是编译安装,因此对于这些东西自己也是比较可控的。从PHP官方网站下载最新的源代码包,解压缩并且安装,这没有什么特别的。以下是我使用的安装编译参数:

./configure --prefix=/usr/local/php-5.4.4/ --with-config-file-path=/usr/local/php-5.4.4/etc --with-mysql --with-mysqli --with-iconv --with-zlib --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --enable-fpm --with-fpm-user=www --with-fpm-group=www --enable-mbstring --with-mcrypt --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --with-pdo-mysql
make ZEND_EXTRA_LIBS=‘-liconv‘
make install

 

在安装eaccelerator的时候,出现了奇葩的错误:
/home/package/eaccelerator-0.9.6.1/eaccelerator.c: In function ‘eaccelerator_restore’:
/home/package/eaccelerator-0.9.6.1/eaccelerator.c:878: warning: assignment discards qualifiers from pointer target type
/home/package/eaccelerator-0.9.6.1/eaccelerator.c: In function ‘eaccelerator_compile_file’:
/home/package/eaccelerator-0.9.6.1/eaccelerator.c:1317: error: ‘zend_class_entry’ has no member named ‘line_start’
/home/package/eaccelerator-0.9.6.1/eaccelerator.c: At top level:
/home/package/eaccelerator-0.9.6.1/eaccelerator.c:1913: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘eaccelerator_functions’
/home/package/eaccelerator-0.9.6.1/eaccelerator.c:1938: error: ‘eaccelerator_functions’ undeclared here (not in a function)
make: *** [eaccelerator.lo] Error 1

看报错情况来看,eaccelerator似乎与新版本的PHP不兼容。于是分别尝试了另外两个加速器,APC和xcache。

安装APC时出现了一个比较纠结的问题,启动php-fpm时会报出php-fpm Segmentation fault错误,后来在网上搜索了之后没有发现解决方案,之后便选定了xcache。看到官方网站上最近发布的2.0版本,已经完全支持了PHP5.4,于是下载回来编译安装,一切正常!

之前看过一个关于三种加速器性能比较的文章(传送门:《关于PHP加速eAccelerator、APC和Zend Optimizer》),发现三者的悬殊较小,eaccelerator以微弱优势胜出。看来,选择xcache也是个不错的选择。

 

加速器eaccelerator不兼容高版本php

标签:

原文地址:http://www.cnblogs.com/fjping0606/p/4760437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!