Debian Linux User wrote:
> Since Perl is an interpreted language
No, perl is a compiled language, with a 3 pass compiler.
man perlguts\n/compiled code
--
see shy jo
I have yet to use this module, but I was just reading about it in the Camel
book.
$ perldoc Benchmark
brian
On Mon, Apr 17, 2000 at 04:44:17PM +0200, Ron Rademaker wrote:
> I've written a cgi script in perl an I would like to know how long
> (exactly, 10th of second) it takes to execute the scri
Ron is rights, but you can get an idea when you do
prepend the time command like: time script
It gives you a few stats.
Regards,
Onno
At 06:19 AM 3/23/00 +, Debian Linux User wrote:
>Ron Rademaker wrote:
>
>> I've written a cgi script in perl an I would like to know how long
>> (exactly, 10
Ron Rademaker wrote:
> I've written a cgi script in perl an I would like to know how long
> (exactly, 10th of second) it takes to execute the script, how can I do
> this?
>
> Ron
>
> --
> Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null
Since Perl is an interpreted language, there
Ron Rademaker wrote:
> I've written a cgi script in perl an I would like to know how long
> (exactly, 10th of second) it takes to execute the script, how can I do
> this?
>
> Ron
>
> --
> Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null
addendum: you can run CGI scripts in offline
On Fri, Mar 17, 2000 at 11:30:21PM +0530, Chirag wrote:
>
> > I've written a cgi script in perl an I would like to know how long
> > (exactly, 10th of second) it takes to execute the script, how can I do
> > this?
> >
> > Ron
> >
> I guess time can do it But not sure. Pls consult the manpage of t
- Original Message -
From: Ron Rademaker <[EMAIL PROTECTED]>
To:
Sent: Monday, April 17, 2000 8:14 PM
Subject: Time taken by a script
> I've written a cgi script in perl an I would like to know how long
> (exactly, 10th of second) it takes to execute the script, ho
Ahoy
You ask:
> I've written a cgi script in perl an I would like to know how long
> (exactly, 10th of second) it takes to execute the script, how can I do
> this?
Here's a crude way:
#!/usr/bin/perl
$now = time();
for( i=0; i<10; i++) {
require("thescriptIwanttotime.pl");
}
$then = time(
I've written a cgi script in perl an I would like to know how long
(exactly, 10th of second) it takes to execute the script, how can I do
this?
Ron
9 matches
Mail list logo