0
votes
A way to determine a process’s “real” memory usage, i.e. private dirty RSS?
Top knows how to do this. It shows VIRT, RES and SHR by default on Debian Linux. VIRT = SWAP + RES. RES = CODE + DATA. SHR is the memory that may be shared with another process (shared library or …
4
votes
How can a Perl script know its own memory footprint?
This will show you how:
http://perldoc.perl.org/Devel/Peek.html
Also, …
