Tag: Jvm
-
Building serverless Scala services with GraalVM native image
Posted on March 2, 2020, Level intermediate Resource Length short
Using GraalVM's Native Image tool to create native executables. Author describes the steps necessary to build a native executable from a simple http4s web service. There is also complete code accompanying this example. By Noel Welsh.
Tags java scala jvm performance
-
Concurnas language taps JVM for high-performance apps
Posted on March 1, 2020, Level intermediate Resource Length short
Python-like, Java-compatible language aims to ease development of concurrent, distributed, and parallel systems. By Paul Krill.
Tags java oop jvm performance
-
How Binary Search Algorithm works -- Java example without recursion
Posted on April 3, 2019, Level intermediate Resource Length medium
This older article on java67.com explores and explains binary search algorithm. The binary search algorithm is one of the fundamental Computer Science Algorithms and used to search an element in a sorted input set.
Tags programming java jvm
-
Introduction to ZGC: Scalable and experimental low-latency JVM garbage collector
Posted on February 17, 2019, Level intermediate Resource Length long
Attila Fejér is author of this interesting read about address issue with managing memory for highly available and scalable systems in Java. Java 11 introduced the Z Garbage Collector (ZGC) as an experimental garbage collector (GC) implementation.
Tags jvm programming java
-
Comparing JVM performance; Zulu OpenJDK, OpenJDK, Oracle JDK, GraalVM CE
Posted on January 15, 2019, Level intermediate Resource Length long
Comparison article by Maarten Smeets in which he tries to help you to choose the best Java Virtual Machine (JVM) for your project. There are many different choices for a JVM for your Java application.
Tags jvm java performance devops programming