Popular Books:
What Is HotSpot JVM
This section describes what is HotSpot - A Java Virtual Machine (JVM) originally developed by Sun Microsystems and now supported by Oracle Corporation. 2022-10-01, ∼1317🔥, 0💬
Install OpenJ9 JVM with OpenJDK on CentOS Systems
This section provides a tutorial example on how to download and install a binary combination of different OpenJDK and OpenJ9 JVM releases for CentOS systems. 2022-10-01, ∼1216🔥, 0💬
loadClass() Method - Loading Classes Explicitly
This section provides a tutorial example on how to load classes into JVM in 3 ways: loadClass() method, Class.forName() method, and 'new' operator. 2022-10-01, ∼1192🔥, 0💬
"-Xlog:gc+ergo=trace" - Minor GC Report
This section provides examples of log messages generated from '--Xlog:gc+ergo=trace' that tells us what happened at each Parallel Minor GC. 2022-10-01, ∼1094🔥, 0💬
Young Generation Collectors - Serial, PS, ParNew, G1
This section describes Garbage Collectors used for the Young generation: Serial, Parallel Scavenge (PS), Parallel New (ParNew), and Garbage First (G1). 2022-10-01, ∼1087🔥, 0💬
"-XX:ParallelGCThreads=6" - Young GC Parallel Threads
This section demonstrates that the '-XX:ParallelGCThreads=6' option can be used to control the number of threads used in Young GC parallel phases. 2022-10-01, ∼1012🔥, 0💬
What Is Runtime?
This section describes what is Runtime - A Java built-in class, java.lang.Runtime, that presents running instances of a Java Virtual Machine (JVM). 2017-04-28, ∼1003🔥, 2💬
Parallel New (ParNew) Collector for Minor GC
This section demonstrates that the '-XX:+UseConcMarkSweepGC' JVM option invokes the Parallel New (ParNew) collector for Young generation GC. 2022-10-01, ∼999🔥, 0💬
"-Xint" - Running in Interpreted-Only Mode
This section provides a tutorial example on how to run benchmark tests in interpreted-only mode using the '-Xint' JVM option. 2022-12-10, ∼966🔥, 1💬
Accessing System Environment Variables
This section provides a tutorial example on how to access environment variables defined in the operating system using the System.getenv() method. 2017-01-14, ∼928🔥, 2💬
💬 2017-01-14 Herong: Martin, The code has been corrected now. Thanks.
"-Xlog:gc" - Default GC Logging Level: INFO
This section describes the garbage collection logging option, '-Xlog:gc', which prints out log messages from the GC channel at the INFO level. 2022-10-01, ∼906🔥, 0💬
Running Java HotSpot Client VM
This section provides you a tutorial example on how to run Java HotSpot Client VM - run Java command in default mode: 'java'. 2022-10-01, ∼896🔥, 0💬
Popular Posts:
Information on how to obtain the full version of this book in PDF, EPUB, or other format.
Want to know when is the 2014 Chinese New Year day? Look for free Chinese calendars for 2014? Chines...
什么是核酸疫苗? 它的工作机制是什么? 核酸疫苗又可以细分成两个小类:DNA疫苗,mRN A疫苗。1. DNA疫苗 - DNA疫苗是...
This section provides a tutorial example on why OpenSSL 'pkcs12' failed with 'bad decrypt:./crypto/e...
This section provides a tutorial example on how to access array elements with element indexes.