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?
|
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?
|
|||
|
|
|
|
One way is to use
|
||
|
|
|
|
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.
|
||
|
|
|
|
Try:
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. |
|||
|
|
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.,
|
|||
|
|