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

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






The mod_perl Developer's Cookbook

The mod_perl Developer's Cookbook

By Geoffrey Young, Paul Lindner, Randy Kobes
mod_perl Pocket Reference

mod_perl Pocket Reference

By Andrew Ford
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
mod_perl2 User's Guide

mod_perl2 User's Guide

By Stas Bekman, Jim Brandt
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 1.0 APInext page: Apache::FakeRequest - fake request object for debugging