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.
|
1
|
|||||
|
|
|
On Windows, you can use WMI (home page, cheeseshop):
On Linux (from python cookbook http://code.activestate.com/recipes/286222/:
|
|||
|
|
|
|
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. |
||
|
|
