package Book::HandlerBenchmark; use Apache::Constants qw(:common); sub handler { $r = shift; $r->send_http_header('text/html'); $r->print("Hello"); my $x = 100; my $y = log ($x ** 100) for (0..100); return OK; } 1;