Top "Memory" questions

Use this tag for memory management or issues in programming.

How to determine CPU and memory consumption from inside a process?

I once had the task of determining the following performance parameters from inside a running application: Total virtual memory available …

c++ c memory cpu
How do I discover memory usage of my application in Android?

How can I find the memory used on my Android application, programmatically? I hope there is a way to do …

java android memory memory-management
Difference between static memory allocation and dynamic memory allocation

I would like to know what is the difference between static memory allocation and dynamic memory allocation? Could you explain …

c memory memory-management dynamic-memory-allocation static-memory-allocation
How to set the maximum memory usage for JVM?

I want to limit the maximum memory used by the JVM. Note, this is not just the heap, I want …

java memory memory-management memory-leaks profiling
In Java, what is the best way to determine the size of an object?

I have an application that reads a CSV file with piles of data rows. I give the user a summary …

java memory
Increase Tomcat memory settings

Possible Duplicate: Dealing with “java.lang.OutOfMemoryError: PermGen space” error I have 8GB RAM in my development machine, and am …

tomcat memory
Docker error : no space left on device

I installed docker on a Debian 7 machine in the following way $ echo deb http://get.docker.io/ubuntu docker main &…

ubuntu memory docker temp
How to get object size in memory?

I need to know how much bytes my object consumes in memory (in C#). for example how much my Hashtable, …

c# .net performance memory profiling
How to clear variables in ipython?

Sometimes I rerun a script within the same ipython session and I get bad surprises when variables haven't been cleared. …

python memory ipython
How do I profile memory usage in Python?

I've recently become interested in algorithms and have begun exploring them by writing a naive implementation and then optimizing it …

python memory profiling