nSkillHub
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

JVM Garbage Collection: From Java 8 to 21

Garbage collection is one of those topics where “I let the JVM handle it” is a perfectly valid answer until it isn’t — and for EMs, that inflection point usually shows up as unexplained latency spikes in production, OOM kills in containers, or a team paralyzed by which GC flag to tweak. Here’s the full picture from Java 8 through 21. The Baseline: Java 8 Collectors Parallel GC (the Java 8 default) Stop-the-world collection on both minor (young gen) and major (old gen) GCs.
Read full post gdoc_arrow_right_alt

Java 8 to 21: Language Features Every EM Should Know

Java has changed dramatically since Java 8. As an engineering manager, you don’t need to recite the JLS — but you do need to understand why these features exist, the trade-offs they carry, and how they affect the decisions your team makes every day. Here’s a curated tour. Java 8 — The Paradigm Shift Java 8 is the most impactful release since generics. Almost everything that followed builds on it.
Read full post gdoc_arrow_right_alt

Using Generics for Datastructures

In Java programming, generics provide a way to create reusable classes, methods, and interfaces with type parameters. They allow us to design components that can work with any data type, providing type safety and flexibility. In this blog post, we will explore the use of generics in creating a data structure from scratch, emphasizing object-oriented programming principles and step-by-step explanations. Understanding Generics Generics in Java enable us to define classes, interfaces, and methods with placeholder types.
Read full post gdoc_arrow_right_alt