An investment in knowledge always pays the best interest
Benjamin franklin
- Technical Blogs (15)
- Thoughts (2)
-
Why Quarkus Starts So Fast — A Pizza Analogy
If you’ve ever wondered why Quarkus applications start almost instantly while traditional Spring Boot apps take their time warming up, here’s a tasty way to understand it — through pizza The Traditional Spring Boot Chef Picture an old-school Italian chef.When you order a pizza, he starts from scratch — fetching ingredients, chopping vegetables, kneading theMore
-
Understanding Java Streams and Parallel Execution: A Case Study
Introduction Java Streams provide a powerful abstraction for processing collections of data. With the introduction of parallel streams, it became easier to write parallelized code for better performance, especially for computationally intensive or I/O-bound tasks. However, understanding how streams and parallelism work under the hood is crucial to use them effectively. In this blog, I’llMore
-
Exploring Java 23
Java 23 brings couple of new features to developers, most of which are still in preview, allowing us to test them before they are officially adopted. This blog will walk you through some of these features, highlighting the potential improvements and how they can simplify our day-to-day coding experience. Don’t forget, to compile and runMore