如何讓PHP 7執行更加神速

2020-07-16 10:06:15


導讀PHP 7 比5.x 快上很多,即使只有單純的版本升級就已經很有感,不過大家還是希望它變得越來越快,這時再做些小調整就會更有fu,Let's try it!


事前準備

說到PHP 7,那一定跑不了LAMP 或是LEMP,請先準備好底層服務的安裝。

  • [CentOS 7] 整合Apache、MySQL、PHP 7 組成LAMP Server
  • [CentOS 7] 整合Nginx、MariaDB、PHP 7 組成LEMP Server

以前我們要讓PHP加快處理速度,通常會配合APC、eAccelerator、XCache的任一個來使用;現在忘了它們吧,就從現在起開始改用OPcache來實作,它是PHP 7開發者之一的惠新宸協力開發的PHP支援模組。 這次實作以LEMP架構為主,套件庫是用Remi的版本,別忘了要依各位實際的環境來修改路徑及設定值。

開始設定

安裝OPcache套件。

sudo yum -y install php70-php-opcache

how-to-improve-php7-performance-011

編輯主設定檔。

sudo vi /etc/opt/remi/php70/php.ini

how-to-improve-php7-performance-012

加上這些引數。

zend_extension=opcache.so opcache.enable=1 opcache.enable_cli=1opcache.file_cache=/ home/opcache opcache.huge_code_pages=1

how-to-improve-php7-performance-013

啟動Huge Pages,它是一種大型暫存分頁機制,詳細說明請參閱The Linux Kernel Archives - Huge Pages,在我的機器上測試結果改到512就夠了。

sudo sysctl -w vm.nr_hugepages=512

how-to-improve-php7-performance-014

建立OPcache專用目錄。

sudo mkdir /home/opcache sudo chown nginx:nginx /home/opcache

how-to-improve-php7-performance-015

重新啟動PHP-FPM,這邊就會看到OPcache已經啟動了。

sudo systemctl restart php70-php-fpm

how-to-improve-php7-performance-016

另外,我們還可以加裝memcached,顧名思義它就是使用記憶體來當快取,加速系統的運作。

sudo yum -y install memcached

how-to-improve-php7-performance-021

編輯主程式檔。

sudo vi /etc/sysconfig/memcached

how-to-improve-php7-performance-022

引數不多,請依需求修改。

PORT - 埠,別忘了開防火牆。
MAXCONN - 總連線數。
CACHESIZE - 記憶體使用量,單位是KB。
PORT="11211"
USER="memcached"
MAXCONN="1024"
CACHESIZE="1024"
OPTIONS=""

how-to-improve-php7-performance-023

啟動memcached,並讓它在開機後自動啟動。

sudo systemctl restart memcached sudo systemctl enable memcached

how-to-improve-php7-performance-024

開放防 火牆

sudo firewall-cmd --permanent --zone=public --add-port=11211/tcp

how-to-improve-php7-performance-025

再安裝memcached for PHP的支援模組。

sudo yum -y install php70-php-pecl-memcached

how-to-improve-php7-performance-026

重新啟動PHP-FPM。

sudo systemctl restart php70-php-fpm

how-to-improve-php7-performance-027

最後看一下phpinfo(); 函數的顯示結果,出現memcached 的段落就代表成功了。

how-to-improve-php7-performance-028

實測結果

這邊直接參照對岸的網友的資料,在OneAPM -使用PHP 7給Web應用加速這篇文章裡,他測試了Wordpress 4.1.1、Drupal 8、phpBB 3.1.3、MediaWiki 1.24.1、Opencart 2.0.2.0 、WardrobeCMS 1.2.0、Geeklog 2.1.0、Magento 1.9.1.1、Traq 3.5.2、Cachet、Moodle 2.9-dev、ZenCart 1.5.4等12種套件的比較結果。 以Wordpress 4.1.1為例,我們可以看到PHP 7比起5.3 ~ 5.6的讀取速度(Read)及延遲時間(Latency)都有大幅改善。

how-to-improve-php7-performance-051

以上就是如何讓PHP 7執行更加神速的詳細內容,更多請關注TW511.COM其它相關文章!