0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PHP7.4で、OPcacheをインストールしてみる

Last updated at Posted at 2022-06-27
../

OPcacheは、PHPの処理を高速にするため、コンパイル済みのバイトコードをキャッシュする。PHPのコードの解析・解釈をスキップすることができ、高速化が図れる。

OPcacheは、標準でインストールされているようだ。

$ dnf list php-opcache
php-opcache.x86_64  7.4.19-2.module_el8.6.0+1075+ab70be85  @appstream

$ vi /etc/php.d/10-opcache.ini

opcache.enable=1
opcache.enable_cli=1
opcache.memory_consumption=128
opcache.max_accelerated_files=4000

$ systemctl restart nginx

OPcacheは、標準でインストールされ、既に有効化されていた。既に機能してくれていたんだ!

../
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?