ホームページ  >  記事  >  バックエンド開発  >  PHP5.5+ 統合 OPcache

PHP5.5+ 統合 OPcache

WBOY
WBOYオリジナル
2016-06-23 13:39:22735ブラウズ

作者:zhanhailiang 日期:2015-02-28

インストールと構成

  1. php-5.6.6.tar.gz

    をダウンロード

    [root@~/wade/git/billfeller.github.io/code]# wget wget http://cn2.php.net/distributions/php-5.6.6.tar.gz
  2. --enable-opcache を通じて OPcache を有効にする:

    ./configure  --prefix=/usr/local/php-5.6.6 --with-pear --with-iconv=/usr/local/ --enable-mysqlnd --with-mysql --with-mysqli --with-openssl --with-libxml-dir --with-curl --with-pdo-mysql --disable-fileinfo --enable-opcache --enable-soap --enable-sockets --enable-fpm --enable-mysqlnd --with-mcrypt --enable-mbstring --enable-debug --enable-maintainer-ztsmake && make install
  3. php.ini を設定します:

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

  4. テスト:

    [root@~/wade/git/billfeller.github.io/code]# /usr/local/php-5.6.6/bin/php -m[Zend Modules]Zend OPcache

続きを読む

    OPcache のインストール
  1. フロントエンド開発でのパフォーマンス (3) PHP オペコード キャッシュ
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。