Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

version 1.1 --- Time::HiRes

Quote Reply
version 1.1 --- Time::HiRes
Alex,

I had to install the Time::HiRes module to
run search.cgi.

That's a new requirement I didn't see listed
in the upgrade.txt.
Quote Reply
Re: version 1.1 --- Time::HiRes In reply to
Sorry, that was internal testing code that should have been taken out. You should remove:

Code:
BEGIN {
use Time::HiRes qw/time/;
use vars qw/$start $end $elaps/;
$start = time;
}

END {
$end = time;
$elaps = sprintf ("%.4f", $end - $start);
print "Elapsed processing time: $elaps s.";
}

from the search.cgi (or if you have the module, it might be interesting for you). =)

I've updated the zip file.

Cheers,

Alex