Ashwin Padiyarpadiyar.hashnode.dev·Oct 28, 2024Java Concurrency with Project Loom in JDK 21This page will outline the shortcomings of the current concurrency model and how virtual threads help address these challenges. I will clarify that the traditional method of creating threads remains relevant and effective. Virtual threads are meant t...#project-loom
Hemant Besracodeinjava.hashnode.dev·Aug 15, 2023Different Executor Services in Java for Efficient MultithreadingIn our earlier blog post, we explained the concept of a thread pool, its significance, and how the ExecutorService framework assists in its implementation. This blog serves as a continuation of our previous discussion. If you haven't read the precedi...70 readsMultithreading in javaJava Concurrency
Hemant Besracodeinjava.hashnode.dev·Aug 15, 2023A Comprehensive Guide to Thread Pools in JavaIn the world of concurrent programming, managing threads efficiently is a challenge that developers often face. Threads are essential for executing tasks concurrently, but creating and managing threads can be resource-intensive and complex. This is w...Multithreading in javaExecutorService