Top "Heap-memory" questions

The heap is process memory set aside for dynamic allocation.

How to increase Java heap space for a tomcat app

There are lots of questions that ask this or a similar question. They all give the command that has to …

java tomcat heap-memory
how to increase java heap memory permanently?

I have one problem with java heap memory. I developed one client server application in java which is run as …

java jvm heap heap-memory heap-dump
Set default heap size in Windows

I want to set Java heap size permanently and don't want to run every jar file with options. I use …

java windows heap-memory
C: How to free nodes in the linked list?

How will I free the nodes allocated in another function? struct node { int data; struct node* next; }; struct node* buildList() { …

c linked-list heap-memory
Detect application heap size in Android

How do you programmatically detect the application heap size available to an Android app? I heard there's a function that …

android memory heap heap-memory
How to view the current heap size that an application is using?

I think I increased my heap size to 1 GB in NetBeans since I changed the config to look like this: …

java netbeans heap heap-memory
What is the largest possible heap size with a 64-bit JVM?

The theoretical maximum heap value that can be set with -Xmx in a 32-bit system is of course 2^32 bytes, but …

java jvm 64-bit heap-memory jvm-arguments
Java 7 (JDK 7) garbage collection and documentation on G1

Java 7 has been out for a while now, but I cannot find any good resources on the configuration of the …

java garbage-collection java-7 heap-memory g1gc
Setting variable to NULL after free

In my company there is a coding rule that says, after freeing any memory, reset the variable to NULL. For …

c coding-style malloc free heap-memory
How can I configure the heap size when starting a Spring Boot application with embedded Tomcat?

I am trying to deploy a Spring Boot powered web app to production. The app is built with Spring Boot 1.0.1 …

spring-boot heap-memory