in reply to Re: Re: CGI::Application + mod_perl =|!= memory leak
in thread CGI::Application + mod_perl =|!= memory leak
Though that does of course do nothing to solve your leak.sub start { warn "## start"; my $self = shift; open my $fh, '<', '/path/to/some/image' or confess $!; $self->header_props(-type=>'your/mimetype'); local $/; return <$fh>; }
Makeshifts last the longest.
|
|---|