|
|
|
@ -94,6 +94,14 @@ public class GenerationMemoryStrategy extends MemoryStrategy {
|
|
|
|
|
return heap.getHeapMemoryUsage().getMax();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* currently not reserved memory
|
|
|
|
|
* @return bytes
|
|
|
|
|
*/
|
|
|
|
|
private final long unreserved() {
|
|
|
|
|
return Math.max(0, maxMemory() - total());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* checks if a specified amount of bytes are available
|
|
|
|
|
* after the jvm recycled unused objects
|
|
|
|
@ -124,7 +132,7 @@ public class GenerationMemoryStrategy extends MemoryStrategy {
|
|
|
|
|
*/
|
|
|
|
|
private final long oldAvailable() {
|
|
|
|
|
final MemoryUsage usage = getUsage(old, true);
|
|
|
|
|
return usage.getCommitted() - usage.getUsed();
|
|
|
|
|
return unreserved() + usage.getCommitted() - usage.getUsed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|