I am going to write a Perl program which is going to use accordingly preliminary benchmarks on small amounts of data about 100MB memory. I want to know the used amount of memory more precisely.
How can I determine the amount of memory a Perl script uses?
There should be some command like (its name printmaxmemoryuse
is made up by me):
printmaxmemoryuse perl myscript.pl
We are on FreeBSD.
In FreeBSD you can use procstat to get extend details about the process. for example to obtain the memory a process is consuming:
Example output:
Also, you could use
top
with cmdwatch for example: