in reply to On Perl CPAN modules

The only possibility of achieving really impressive increases in productivity is using other people's libraries. <cite>Bruce Eckel. Thinking in C++, Prentice Hall, 1995.</cite>

As for speed, does it really matter? How long will it matter?

Christian Lemburg
Brainbench MVP for Perl
http://www.brainbench.com

Replies are listed 'Best First'.
RE: RE: On Perl CPAN modules
by strredwolf (Chaplain) on Oct 01, 2000 at 19:25 UTC
    Which is why we have the GPL. ;)

    For speed, apparently it does matter -- with large websites. Check that Training wheels again article.

    --
    &$WolfSkunks({use Perl;}); do {$you};

      Did you read the entire thread?

      Specifically I am thinking of this post.

      Secondly all that that thread showed, even with the original numbers, is that you can do better on performance. But it does not compare, for instance, the cost of buying more machines versus having someone discover how to delete your customer database.

      Now if you want to learn more about performance, go here. Those slides have extremely good advice about how to wind up being incredibly fast.

      For the record, he uses CGI.pm.

        Oh yes, I did. Infact, if you reread that specific post, you'll see what the benchmark (and I) are saying. Infact, let me repeat it:

        • Perl script, with use Apache::Registry and use CGI.pm: 30 hits/sec
        • PHP script, pure: 55 hits/sec
        • Perl script, with only use Apache::Registry: 62 hits/sec
        • Perl script, using only a dedicated Apache handler: 69 hits/sec
        For the record, yes, but that's not my point.

        --
        &$WolfSkunks({use Perl;}); do {$you};