PHP7 vs PHP5.6 on MailWizz server

imeow

Member
Greetings!

I would like to know if there are any benchmark tests on MailWizz using PHP7 and PHP5.6 to compare?
How much does the version of PHP improves the stability and speed of sending campaigns?
 
Here's some numbers that i got now with these settings(no warm-up of php or the like) :
Screenshot 2017-03-07 11.59.37.png


PHP 5.6 (regular) :
Code:
[2017-03-07 10:02:18] - Done processing the campaign.
[2017-03-07 10:02:24] - This cycle completed in 85.15 seconds and used 4.25 MB of memory!
[2017-03-07 10:02:24] - CPU usage in last minute: 0.84, in last 5 minutes: 0.32, in last 15 minutes: 0.15!

real    1m25.432s
user    0m12.393s
sys     0m1.127s
-bash-4.2$

PHP 5.4 (optimized) :
Code:
[2017-03-07 10:07:48] - Done processing the campaign.
[2017-03-07 10:07:53] - This cycle completed in 80.13 seconds and used 4.25 MB of memory!
[2017-03-07 10:07:53] - CPU usage in last minute: 1.23, in last 5 minutes: 0.66, in last 15 minutes: 0.34!

real    1m20.262s
user    0m14.343s
sys     0m4.907s

PHP 7.0.x (regular) :
Code:
[2017-03-07 10:09:50] - Done processing the campaign.
[2017-03-07 10:09:55] - This cycle completed in 87.13 seconds and used 4 MB of memory!
[2017-03-07 10:09:55] - CPU usage in last minute: 0.48, in last 5 minutes: 0.52, in last 15 minutes: 0.32!

real    1m27.244s
user    0m5.570s
sys     0m0.850s

If you can use php 7, go for it without regrets.
 
Back
Top