in reply to Re: Re: Re: RFC CGI.pm refactoring
in thread RFC CGI.pm refactoring
Sorry, but comparing fully blown CGI while forcing it to load all is quitely unfair in this case while CGI.pm has an option to run in a different manner.use Benchmark; use CGI qw/:cgi /; use CGI::Simple; $ENV{'QUERY_STRING'} = 'foo=bar&baz=boo'; $q = new CGI; $s = new CGI::Simple; timethese(250000, {'CGI' =>'$q->param("baz")', 'Simple' => '$s->param( +"baz")'});
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: Re: RFC CGI.pm refactoring
by tachyon (Chancellor) on Feb 15, 2002 at 15:48 UTC | |
Re: Re: Re: Re: Re: RFC CGI.pm refactoring
by Masem (Monsignor) on Feb 15, 2002 at 15:18 UTC | |
by tachyon (Chancellor) on Feb 16, 2002 at 00:27 UTC |