<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.0.5">
</HEAD>
<BODY>
<I><TT>I don't know of any memory monitoring stuff in perl, but it may be there.</TT></I><BR>
<BR>
The Devel:: modules tend to be pretty helpful with this stuff; specifically, Devel::Peek lets you dump memory stats. I've never used Devel::Leak, but if you suspect circular references or shiesty gc'ing, then that may be worth looking into. Only problem is that you'll need a perl built with -DDEBUGGING, -DEEBUGGING_MSTATS, and using perl's malloc(). That's not always realistic for production builds, but I find it useful for testbed/QA environments.
</BODY>
</HTML>