FOSDEM 2020: Reducing OpenJDK Java GC Times with Stack Allocation

In this talk we’ll explore ways that the JVM can reduce the object allocation rate of Java programs automatically by performing stack allocation of objects that are known to be local to a method, or in compiler terms non-escaping. The discussion is focuse… Read more

Similar

Java Developer’s Guide to SSL Certificates

Overview When developing web applications, we often need to integrate with other applications using SSL.   This could be over different protocols such as HTTPS, IMAPS, or LDAPS.  In this article, we'll cover what Java developers need to know about SSL cer... (more…)

Read more »

Java.util.Scanner Class

Java.util package provides a Scanner class. A simple text scanner parse primitive types and strings using regular expressions. A Scanner breaks its input into tokens using a delimiter pattern, which by default matches whitespace. The resulting tokens may ... (more…)

Read more »