반응형
php7 버전에서 Zend Opcache 가 포함되어 설치되므로 /etc/php.ini 에서 아래와같이 extension 으로 설정만 해주면된다.
[opcache]
zend_extension=/usr/local/php-7.3.23/lib/php/extensions/no-debug-zts-20180731/opcache.so
opcache.enable=1
opcache.enable_cli=1
opcache.memory_consumption=10240
opcache.interned_strings_buffer=16
opcache.max_accelerated_files=2400000
opcache.max_wasted_percentage=10
opcache.validate_timestamps=1
opcache.revalidate_freq=60
opcache.fast_shutdown=1
위와같이 설정후 apache restart 하면 php -v 했을때 Zend OPcache 가 보일것이다
기존
적용 후
반응형
'👨🏻💻Infra > 🟦WEB & WAS' 카테고리의 다른 글
Apache client denied by server configuration (0) | 2020.12.15 |
---|---|
PHP7 SSH2 (0) | 2020.10.27 |
Apache 브라우저 캐시 설정 (0) | 2020.10.14 |
Apache gzip 압축전송 (0) | 2020.10.14 |
Apache ModSecurity requires mod_unique_id to be installed. (0) | 2020.10.14 |