Top "Heap-memory" questions

The heap is process memory set aside for dynamic allocation.

What is the difference between Java Non Heap Memory and Stack Memory? Are they Same if not what is the difference between them?

I am using Jconsole for monitoring a Java Application. The memory tab shows different Heap and Non Heap memories like …

java memory-management jvm heap-memory jconsole
Why application is dying randomly?

I am developing an music player app. All works fine except the app dies suddenly. Sometimes this happens when the …

android heap-memory
Running out of heap space

I am having a heap space problem. My program is simple. There are two actors (send & receive) "send" actor …

java scala jvm heap-memory
Elasticsearch OutOfMemoryError Java heap space

I am running an 8 cores, 32g RAM elasticsearch node with 5 shards, 400 million (small) documents. Everything works great until I run …

java elasticsearch out-of-memory heap-memory
Explain stack overflow and heap overflow in programming with example?

Possible Duplicate: What is a stack overflow error? Can any one tell me how and why stack overflow and heap …

c stack-overflow heap-memory
Why is the default size of PermGen so small?

What would be the purpose of limiting the size of the Permgen space on a Java JVM? Why not always …

java heap heap-memory permgen
JVM Tenured/Old gen reached limit & server hanging

Our application requires very huge memory since it deals with very large data. Hence we increased our max heap size …

java jboss garbage-collection jvm heap-memory
Is it possible to show heap memory size in Intellij IDE (Android Studio)?

I am searching for a way to display Heap Memory/force garbage collection. I have already tried to search through …

android-studio intellij-idea heap-memory
Memory sharing between C++ threads

I'm new to threading in C++, and I'm trying to get a clear picture about how memory is shared/not …

c++ multithreading memory heap-memory stack-memory
C Array Instantiation - Stack or Heap Allocation?

I guarantee that this question has been asked before, but I haven't been able to find it via search; sorry …

c memory-management heap-memory stack-memory