in reply to Re^3: Private Variables and FastCGI / ModPerl
in thread Private Variables and FastCGI / ModPerl
Although that does fix the problems with that specific subroutine, it doesn't tell my how to keep a value live within a subroutine without wiping it each time the subroutine is called...
local does fix the problem, using local $elapsed_time, within the FCGI loop and outside the subroutine.