Is there a way for a Python program to determine how much memory it's currently using? I've seen discussions about memory usage for a single object, but what I need is total memory usage for the process, so that I can determine when it's necessary to start discarding cached data.
|
|
On Windows, you can use WMI (home page, cheeseshop):
On Linux (from python cookbook http://code.activestate.com/recipes/286222/:
|
|||||
|
|
You could also use the
The Python docs aren't clear on what the units are exactly, but the Mac OS X man page for The As If you only care about Linux, you can just check the |
|||||||||||||
|
|
Heapy (and friends) may be what you're looking for. Also, caches typically have a fixed upper limit on their size to solve the sort of problem you're talking about. For instance, check out this LRU cache decorator. |
|||
|
|
|
On unix, you can use the
where 1347 is some process id. Also, the result is in MB. |
|||
|
|
|
Using sh and os to get into python bayer's answer.
Answer is in megabytes. |
||||
|
|
