http://qs1969.pair.com?node_id=478398


in reply to Re^2: Perl threading stability?
in thread Perl threading stability?

I knocked up this random meaningless benchmark script:
my $t; for my $i (1..10_000_000) { if ($i % 3) { $t += $i; } }
and ran it a few times on a threaded and non-threaded perl build (a recent bleedperl) and got average timings of 4.46s and 4.99s, so about 10% slower.

Dave.