jvm Getting started with jvm

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

This section provides an overview of what jvm is, and why a developer might want to use it.

It should also mention any large subjects within jvm, and link out to the related topics. Since the Documentation for jvm is new, you may need to create initial versions of those related topics.

Enabling Parallel GC

Parallel GC is Stop-The-World (STW) collector which stop all the application threads when running the garbage collector.

When Parallel GC was introduced it was only enabled the parallel GC in young generation collector and OldGeneration Collector was single thread stop-the-world collector, but later introduce separate command line option to enable the Old Parallel.

Enable Parallel GC on Java 6 : -XX:+UseParallelOldGC

Enable Parallel GC on Java 7u4 onward: -XX:+UseParallelGC OR -XX:+UseParallelOldGC

Parallel GC was made default on Java7 update 4 onward , however specifying the one of above option makes it explicit.

Installation or Setup

Detailed instructions on getting jvm set up or installed.



Got any jvm Question?