Mar 6 · 6 min read · Why I Banned ThreadLocal from the Exeris Kernel (And What Replaced It) When I started designing the Exeris Kernel — a next-generation, zero-copy runtime built for Java 26+ — I established one non-negotiable architectural law: "No Waste Compute." In a...
Join discussionOct 23, 2025 · 2 min read · Java has always used platform threads for concurrency. While powerful, they can be resource-heavy when creating thousands of threads. To solve this, Project Loom introduced Virtual Threads — lightweight, low-overhead threads that make writing concurr...
Join discussionAug 17, 2025 · 21 min read · Bạn đã bao giờ viết một ứng dụng xử lý hàng ngàn request cùng lúc, và cảm thấy như mình đang chiến đấu với chính Java? Bạn từng dùng ThreadPoolExecutor và vắt óc cân chỉnh số lượng thread cho "vừa đủ dùng", tránh thiếu nhưng cũng không dám dư vì sợ O...
Join discussion
Jul 16, 2025 · 13 min read · Java has evolved rapidly, and in 2025, developers now have more threading options than ever before — from traditional platform threads to modern virtual threads (introduced via Project Loom) and powerful tools like the ForkJoinPool. But with so many ...
Join discussionJun 16, 2025 · 3 min read · 🚀 Introduction In modern Java applications, scalability and responsiveness are no longer optional. Traditional thread-per-request models are hitting their limits under massive loads, especially in high-throughput microservice and reactive systems. E...
Join discussionMay 27, 2025 · 3 min read · Java 24 llegó en marzo de 2025 como una versión de corto plazo (no LTS), pero viene cargada de novedades útiles para el día a día de cualquier desarrollador Java. Desde mejoras de lenguaje hasta librerías optimizadas y herramientas para programación ...
Join discussion
Mar 10, 2025 · 3 min read · Java’s threading model has long been a cornerstone of its concurrency capabilities. However, the limitations of traditional platform threads (wrappers around OS threads) have persisted for decades—until the release of java 21. Virtual threads, repres...
Join discussion
Mar 9, 2025 · 3 min read · Java has undergone significant improvements in multithreading and concurrency management. With the introduction of Virtual Threads and Structured Concurrency in Project Loom, developers can now handle concurrency more efficiently. This article explor...
Join discussion
Jan 25, 2025 · 3 min read · Guidelines for a Modern Era Functional programming has been a part of Java for years, yet it remains an underutilized paradigm despite its immense potential. With the advent of GraalVM, virtual threads, and native compilation, Java has entered a new ...
Join discussion