R
Roedy Green
I was thinking that GC in an IDE is a little different that usual. If
the user pauses to think, this might be a good time to do a quick GC,
even if memory is not that full.
You are best to do short GCs so that when the user suddenly kicks back
in, you get quick response. The total time spent going GC is not very
important.
I wondered how well Java.exe is designed for an IDE to work that way.
the user pauses to think, this might be a good time to do a quick GC,
even if memory is not that full.
You are best to do short GCs so that when the user suddenly kicks back
in, you get quick response. The total time spent going GC is not very
important.
I wondered how well Java.exe is designed for an IDE to work that way.