Memory::Usage(3pm) User Contributed Perl Documentation Memory::Usage(3pm)

Memory::Usage - Tools to determine actual memory usage

Version 0.201

    use Memory::Usage;
    my $mu = Memory::Usage->new();
    # Record amount of memory used by current process
    $mu->record('starting work');
    # Do the thing you want to measure
    $object->something_memory_intensive();
    # Record amount in use afterwards
    $mu->record('after something_memory_intensive()');
    # Spit out a report
    $mu->dump();

This module lets you attempt to measure, from your operating system's perspective, how much memory a process is using at any given time.

Creates a new Memory::Usage object. This object will contain usage state as recorded along the way.

Record the memory usage at call time, logging it internally with the provided message. Optionally takes a process ID to record memory usage for, defaulting to the current process.
Generates report on memory usage.
Prints report on memory usage to stderr.
Return arrayref of internal state. Returned arrayref contains zero or more references to arrays with the following columns (in order). All sizes are in kilobytes.

Dave O'Neill, "<dmo at dmo.ca>"

Please report any bugs or feature requests to "bug-memory-usage at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Memory-Usage>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.

    perldoc Memory::Usage

You can also look for information at:

Copyright 2010 Dave O'Neill.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

2022-11-20 perl v5.36.0