jugLviv

Meta


Recent Posts


Categories


Tags


Archives


juglviv
Author

juglviv

JDay on Saturday. Don’t miss

Ми дочекались. Java Подія року у Львові вже в цю суботу. Хуторівка 35а. Чекаємо вас на реєстрацію з 9,00 до 10,00. Також о 9,00 стартує воркшоп від амазона. Тож потрібно прийти трішки раніше. Детальна інформація на http://www.jday.com.ua/ ПС. Якщо Ви ще не зареєструвались. Це можна ще зробити Поспішайте! До зустрічі на JDay 😉

juglvivjuglviv

Garbage Collection in Java (3)

This follows on from my previous two garbage collection blog posts: Overview of GC in Hotspot. Parallel Garbage Collectors. Concurrent Mark Sweep The parallel garbage collectors in Hotspot are designed to minimise the amount of time that the application spends undertaking garbage collection, which is termed throughput. This [...]

juglvivjuglviv

Garbage Collection in Java (2)

Parallel Scavenge Today we cover how Parallel GC works. Specifically this is the combination of running a Parallel Scavenge collector over Eden and the Parallel Mark and Sweep collector over the Tenured generation. You can get this option by passing in -XX:+UseParallelOldGC though its the default on certain machine types. You may want to [...]

juglvivjuglviv

Garbage Collection in Java (1)

This is the first in a series of posts about Garbage Collection (GC). I hope to be able to cover a bit of theory and all the major collectors in thehotspot virtual machine over the course of the series. This post just explains what garbage collection is and elements common to different collectors. Why should I […]

juglvivjuglviv