package Benchmark::Handler; use Apache::Constants qw(:common); sub handler { $r = shift; $r->send_http_header('text/plain'); $r->print("Hello"); return OK; } 1;