kohlerm
|
Registered User
|
|
1d |
answered | What does “garbage collection rate” mean, and what benefit it could provide? |
|
Dec 1 |
comment |
What and how much overheads happen when I use a Reference class? Softreferences can show up. The are reclaimed relatively late and if you have many of them you can run into severe performance problems because they require more than one GC run to be reclaimed. |
|
Oct 9 |
awarded | ● Yearling |
|
Jul 9 |
comment |
Memory Allocation/Deallocation Bottleneck? well the reason is that the SUN JVM (up to now) uses a copying allocator for the new space. there's a to and a from space and one of them is always completely empty. |
