我正在尝试在 centos 5 服务器上安装 apc(替代 php 缓存)。我试过yum search apc
了,只找到美国电力公司相关的包。
怎么安装apc?
该软件包称为 php-pecl-apc,它应该在您的任何存储库中都可用。
yum install php-pear php-devel httpd-devel pcre-devel gcc make
pecl安装apc
我正在使用 remi 存储库。(CentOS release 6.5, PHP 5.4) 您可以通过以下命令列出可用的包
yum --enablerepo=remi list php54*
yum --enablerepo=remi list php54* | grep apc
我得到了以下 apc 包
php54-php-pecl-apcu.x86_64 4.0.7-1.el6.remi @remi
现在您可以使用以下命令安装 apc
yum install php54-php-pecl-apcu --enablerepo=remi