vote up 1 vote down star
2

I use ActivePerl under Windows for my Perl script, so I can look at how much memory it uses via the 'Processes' tab in Windows Task Manager.

I find having to do this rather cumbersome. Is there another way to determine my Perl program's memory use?

flag

4 Answers

vote up 6 vote down check

One way is to use Proc::ProcessTable:

use Proc::ProcessTable;

print 'Memory usage: ', memory_usage(), "\n";

sub memory_usage() {
    my $t = new Proc::ProcessTable;
    foreach my $got (@{$t->table}) {
        next
            unless $got->pid eq $$;
        return $got->size;
    }
}
link|flag
vote up 3 vote down

WMI is the standard way under Windows to examine this sort of stuff from within a program. I believe you would be looking for this.

MaximumWorkingSetSize is the value of physical RAM in use. VirtualSize is the size of your total address space in use.

link|flag
vote up 1 vote down

Try:

open( STAT , "</proc/$$/stat" )
    or die "Unable to open stat file";
@stat = split /\s+/ , <STAT>;
close( STAT );

You can take a look at the "Determining memory usage of a process" and "Determining the Memory Usage of a Perl program from within Perl" on PerlMonks.

link|flag
1  
Krish, I fixed up your code formatting but I'm not sure this answer is relevant to the Windows environment. – paxdiablo Jul 12 at 11:15
Pax, Thanks for correction – joe Jul 12 at 11:19
vote up 0 vote down

If you're using ActivePerl, some of these solutions won't work. I've cobbled together something I think should work out of the box in ActivePerl, but it hasn't been tested in less than 5.10, so your mileage may vary. As Pax answered, you can get different numbers depending on what you ask for, i.e., MaximumWorkingSetSize vs WorkingSetSize, etc.

use Win32::OLE qw/in/;

sub memory_usage() {
    my $objWMI = Win32::OLE->GetObject('winmgmts:\\\\.\\root\\cimv2');
    my $processes = $objWMI->ExecQuery("select * from Win32_Process where ProcessId=$$");

    foreach my $proc (in($processes)) {
        return $proc->{WorkingSetSize};
    }
}

print 'Memory usage: ', memory_usage(), "\n";
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.