Top "Memory-footprint" questions

Memory footprint refers to the amount of main memory that a program, application or service uses or references while running.

In-memory size of a Python structure

Is there a reference for the memory size of Python data stucture on 32- and 64-bit platforms? If not, this …

python memory memory-footprint
Get memory and CPU usage

I would like to get the total physical memory, the CPU usage, and and the amount of memory being used. …

java cpu-usage memory-footprint
Java performance: true vs. Boolean.TRUE

Which of the following is better in terms of performance and efficient memory usage? Boolean isItTrue(arg){ return Boolean.TRUE; } …

java performance boolean memory-footprint
What is the memory footprint of the JVM and how can I minimize it?

I just wanted to know what the actual footprint of the JavaVM (Sun, Linux) is when one starts to start …

java memory jvm memory-footprint
Finding memory leaks in C# application

I have an application in C#, Framework 4. Very basically, this application mainly react to events and creates objects, release them, …

c# .net memory-footprint
How to determine the size of PermGen within a Java application (i.e., programmatically)?

Is there any way to measure the currently used size of permanent generation (PermGen) within my Java application? I cannot …

java memory-management memory-footprint
Tools to analyzing the memory footprint of native DLLs and assemblies loaded in a process?

I have a process holding 130MB of memory according to task manager, with only 11MB of live .NET objects according …

.net memory dll process memory-footprint