in reply to Re: cgi process time
in thread cgi process time

granular time is better for web app benchmarking:
use Time::HiRes qw(time); my $bench = time; handle_request(); printf 'Code took %.4f seconds', time - $bench;