Install OPcache and APCu to php 7.0 of CentOS 7.2

Facebooktwittermail

php 5.6を7.0にアップデートしたので次はOpcacheとAPCuを導入します。

Update from php 5.6 to 7.0 on CentOS 7.2

APCがAPCuとZend OPcacheに取って代わられたワケ
http://qiita.com/nntsugu@github/items/63099b829befb57859d7

APCとZend OPcache/APCuの関係
APCが機能として持っている
 opecode cache機能とdata cache機能を
 
PHP 5.5+では
 opecode cache : Zend OPcache
 data cache : APCu
で提供するようになりました。

※上記サイトから引用しました。

今回はAPCuも導入します。

  1. OPcacheのインストール
  2. OPcache設定ファイル作成
  3. OPcacheの設定ファイルが/etc/opt/remi/php70/php.d/10-opcache.iniにあるのでこれを利用します。

  4. 10-opcache.iniの編集
  5. 10-opcache.iniのzend_extension=を変更します。
    これ以外の項目は必要に応じて変更して下さい。

  6. APCuのインストール
  7. APCu設定ファイル作成
  8. APCuの設定ファイルが/etc/opt/remi/php70/php.d/40-apcu.iniにあるのでこれを利用します。

  9. 40-apcu.iniの編集
  10. 40-apcu.ini のextension=を変更します。
    これ以外の項目は必要に応じて変更して下さい。

  11. OPcacheとAPCuの確認
  12. Apache再起動

Leave a Reply