mod_perl logo
perl icon







previous page: Apache::src - Methods for locating and parsing bits of Apache source codepage up: mod_perl APInext page: Apache::FakeRequest - fake request object for debugging


Apache::Leak - Module for tracking memory leaks in mod_perl code











Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern
Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet


Table of Contents

Synopsis

  use Apache::Leak;
  
  leak_test {
      my $obj = Foo->new;
      $obj->thingy;
  };
  #now look in error_log for results


TOP

Description

Apache::Leak is a module built to track memory leaks in mod_perl code.



TOP

See Also

Devel::Leak



TOP

Author

Doug MacEachern

Leak.xs was derived from Nick Ing-Simmons' Devel::Leak







TOP
previous page: Apache::src - Methods for locating and parsing bits of Apache source codepage up: mod_perl APInext page: Apache::FakeRequest - fake request object for debugging