Creating Terabyte Sized Queues with Low-Latency

Queues are often fundamental components in software design patterns. But, what if there are millions of messages received every second and multi-process consumers need to be able to read the complete ledger of all messages? Java can only hold so much information before the heap becomes a limiting factor with high-impacting garbage collections as a result, potentially preventing us from …

Read More »

Structured Error Messages for HTTP APIs

Ever since I started to work on the Apache APISIX project, I’ve been trying to improve my knowledge and understanding of REST RESTful HTTP APIs. For this, I’m reading and watching the following sources: Books. At the moment, I’m finishing API Design Patterns. Expect a review soon. YouTube. I’d recommend ErikWilde’ channel. While some videos are better than others, they …

Read More »

Discuss the Problem, Not the Solution!

As a tech guy, I love to discuss technologies. And as discussions go, it’s generally the comparison kind: JVM vs. Net, Java vs. Kotlin, Go vs. Rust, Maven vs. the unspeakable one, etc. However, it’s too easy to fall into the quagmire of the merits and flaws of our beloved toys, talk about them for hours, and not reach a …

Read More »

JavaFX Links of October

When I (re)started the JavaFX Links Of The Week on jfx-central.com in September, I was wondering if there would be enough material to share every week. But that was a stupid mistake as you can see below in the summary of what happened in October… JavaFX 19 and 20 JavaFX 19 just got released a few weeks ago, but Johan …

Read More »

Renovate: Dependabot Alternative

I won’t introduce Dependabot. Lots and lots of developers use it daily on GitHub. I do use it as well. However, it suffers from two drawbacks: While it’s perfectly integrated with GitHub, integrations with other platforms are less seamless. It’s limited in the list of ecosystems it supports For example, I generally use Docker Compose files for my demos. When …

Read More »

The Problem with Functional Programming

Let me start off with saying that I love functional programming. Although… a better way of saying it would be that I love what functional programming brings me. It reduces complexity, the code is nice and explicit, and it eliminates certain bugs from occurring. But there are a few things that I wanted to discuss regarding functional programming. Object Orientation …

Read More »

Trip Report: Dubai JUG 2nd Meetup

This was the second Dubai JUG meetup, yet the first real one. The first meetup was more of a practice team building session. Here is a trip report of the second Dubai JUG meetup. First day in Dubai This was my second time in Dubai. I had visited most of the landmarks the first time, making this a more relaxing visit without …

Read More »

Why the Fastest Way of Serializing a Java Field is not Serializing it at All

This article elaborates on different ways of serializing Java objects and benchmarks performance for the variants. Read this article and become aware of different ways to improve Java serialization performance. In a previous article about open-source Chronicle Queue, there was some benchmarking and method profiling indicating that the speed of serialization had a significant impact on execution performance. After all, …

Read More »

Foojay Podcast #6: Welcome to Foojay!

In this episode of the Foojay Podcast, we want to give you a look behind the curtains of Foojay.io. The very first post on the website dates from April 25th in 2020, and it was by Geertjan Wielenga. Let’s look back and what has happened on Foojay during the 2,5 years since that first post, and talk to some of …

Read More »