Re: [PHP-DEV] Performance problem in Windows between 5.1 5.2

2007-04-25 Thread Andrew Hutchings
Mauro N. Infantino wrote: Thanks for your response, Andrew. Just to clarify: Maybe there's no performance problem. I'm seeing this behavior without any logical explanation (both installations are exactly equal and the difference in execution time is too big not to be noticed). Of course,

Re: [PHP-DEV] Performance problem in Windows between 5.1 5.2

2007-04-25 Thread Mauro N. Infantino
-Original Message- From: Andrew Hutchings [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 25, 2007 4:46 AM Subject: Re: [PHP-DEV] Performance problem in Windows between 5.1 5.2 Try 5.2.0, I found it has no performance hit when compared to 5.1.6. Regards Andrew Hi, Since I

Re: [PHP-DEV] Performance problem in Windows between 5.1 5.2

2007-04-25 Thread Richard Lynch
On Wed, April 25, 2007 1:43 pm, Mauro N. Infantino wrote: definitions are taking more time in PHP5.2.x. The problem I'm facing is that I'm trying to benchmark this, but I'm not being able because I can not find the way to iterate this case enough times to get a significant number. eval()'d

Re: [PHP-DEV] Performance problem in Windows between 5.1 5.2

2007-04-25 Thread Mauro N. Infantino
-Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Subject: Re: [PHP-DEV] Performance problem in Windows between 5.1 5.2 ?php $file = fopen('/tmp/foo', 'w'); //or whatever. for ($i = 0; $i 100; $i++){ $class = EOC class foo_$i { //more stuff here

[PHP-DEV] Performance problem in Windows between 5.1 5.2

2007-04-24 Thread Mauro Infantino
Hi all, I'm using PHP 5.1.6 5.2.1. Is there any known performance issue with PHP 5.2.1? With the same script, same php.ini, same extensions, same apache (of course), I'm getting a huge difference. For example, with a microtime difference between start end I get: - PHP 5.1.6: 111ms avg. - PHP

Re: [PHP-DEV] Performance problem in Windows between 5.1 5.2

2007-04-24 Thread Mauro N. Infantino
-Original Message- From: Andrew Hutchings [mailto:[EMAIL PROTECTED] Subject: [PHP-DEV] Re: Performance problem in Windows between 5.1 5.2 I brought this issue up before using Linux, but it was all in my imagination apparently :) Regards Andrew Thanks for your response