in reply to The magic of threads
in thread How to make your Perl 30% faster

You opinion about this it's nice. But also compiler version and perl version can giustify performance increase

Replies are listed 'Best First'.
Re^2: The magic of threads
by barbie (Deacon) on Nov 17, 2004 at 15:51 UTC
    They can indeed. However, in this case the biggest factor is the none use of ithreads. In the tests we did here we did a like for like test, which showed a significant improvement when we simply recompiled without ithread support. If we were to add compiler flags I'm sure we could improve further, but as others have mentioned, adding further optimisations could have side effects.

    --
    Barbie | Birmingham Perl Mongers user group | http://birmingham.pm.org/

      I would expect the real gain to come from getting rid of PERL_IMPLICIT_CONTEXT/MULTIPLICITY (in addition to ithreads). Can you show perl -V from your tests?