Non-blocking HTTP I/O: A Necessity for High-performance Web Applications (2023)

Introduction The rapid growth and evolution of web applications have brought forth an increasing demand for high-performance, scalable, and resilient systems. One critical aspect of achieving these goals is embracing non-blocking HTTP I/O in web afpplications. Non-blocking I/O is a technique that allows multiple tasks to be performed concurrently without Read more…

Cheat sheet: Java Concurrency

Abstract This article contains information about Concurrency applied to the world of Java in a compact format. Concurrency basics Parallelism in von-Neumann based machine architectures is actually just an emulated behaviour by process schedulers and needs further process synchronisation to work. As software engineer you usually have to coordinate thread Read more…