PHP 7とWordpressサーバー: http://talks.php。)で古いバージョンを比較するこのベンチマークを再現しようとしました。 net/oz15#/ wpbench
私の構成はほぼ同じで、サーバーにはi7、SSD、16GB RAMおよびdebianがあります。サーバーソフトウェアはnginxです。驚くべきことに、私の結果は上記のリンクとは大きく異なります。
私のテストでは、Siege( https://www.joedog.org/siege-home/ )は次のように出力します。
For PHP 7.0.0RC1:
siege -c100 -r100 http://10.22.255.133/wordpress/
** SIEGE 3.0.8
** Preparing 100 concurrent users for battle.
The server is now under siege.. done.
Transactions: 10000 hits
Availability: 100.00 %
Elapsed time: 131.61 secs
Data transferred: 95.77 MB
Response time: 0.75 secs
Transaction rate: 75.98 trans/sec
Throughput: 0.73 MB/sec
Concurrency: 56.98
Successful transactions: 10000
Failed transactions: 0
Longest transaction: 1.01
Shortest transaction: 0.04
For PHP 5.6.12:
siege -c100 -r100 http://10.22.255.133/wordpress/
** SIEGE 3.0.8
** Preparing 100 concurrent users for battle.
The server is now under siege.. done.
Transactions: 10000 hits
Availability: 100.00 %
Elapsed time: 63.41 secs
Data transferred: 95.77 MB
Response time: 0.03 secs
Transaction rate: 157.70 trans/sec
Throughput: 1.51 MB/sec
Concurrency: 4.45
Successful transactions: 10000
Failed transactions: 0
Longest transaction: 0.63
Shortest transaction: 0.01
ご覧のトランザクションレートを見ると、PHP 5はPHP 7よりも約2倍高速です。信じられません。
もう1つの興味深い事実は、このベンチマーク( http://www.php-benchmark-script.com/ )を実行すると、PHP 7が約3倍高速になることです。 than PHP 5(もちろん、Wordpressもテストしたのと同じサーバー上で)。測定結果は次のとおりです。
次の場合に備えて、両方のphpinfo()ファイルをアップロードしました。
WordpressでのテストでPHP 7がそれほど遅いのはなぜですか?
opcacheを有効にするとPHP 7は実際にはPHP 5の2倍の速度です。ヒントをありがとうMjh!
ランダムに入力されたWordPressサーバーで次の測定を行いました。
SiegeはPHP 7.0.0RC1に対して以下を出力するようになりました。
Transactions: 10000 hits
Availability: 100.00 %
Elapsed time: 62.14 secs
Data transferred: 604.20 MB
Response time: 0.02 secs
Transaction rate: 160.93 trans/sec
Throughput: 9.72 MB/sec
Concurrency: 3.77
Successful transactions: 10000
Failed transactions: 0
Longest transaction: 0.41
Shortest transaction: 0.01
そしてPHP 5.6.12:
siege -c100 -r100 http://10.22.255.133/wordpress/
** SIEGE 3.0.8
** Preparing 100 concurrent users for battle.
The server is now under siege.. done.
Transactions: 10000 hits
Availability: 100.00 %
Elapsed time: 119.98 secs
Data transferred: 604.20 MB
Response time: 0.60 secs
Transaction rate: 83.35 trans/sec
Throughput: 5.04 MB/sec
Concurrency: 49.86
Successful transactions: 10000
Failed transactions: 0
Longest transaction: 4.06
Shortest transaction: 0.04
投稿したphpinfo
の出力によると、PHP 7ではopcache
が有効になっていませんが、PHP5では有効になっています。大きな違いがあります。