Server-Sent Events vs JSON-Stream

In this last post, I explained why you should use streaming instead of blocking. But what about Server-Sent Events? ...

July 16, 2019 · 6 min · Auryn Engel

HowTo: Stream large data with Spring Boot and RxJava in Kotlin

Imagine you have a very large amount of data that you want to make available at a rest-endpoint. Then there are two possibilities. ...

July 10, 2019 · 3 min · Auryn Engel

Comparison of Microservice Frameworks with a Streaming Example

In my last post, I presented some interesting applications of reactive programming with RxJava and when/why you should use it. ...

July 8, 2019 · 11 min · Auryn Engel

HowTo: Reactive Stream with Spring Boot and RxJava in Kotlin

Everyone knows that, you open a website and load and load it. 😣 But why is that? ...

May 18, 2019 · 3 min · Auryn Engel

Wildfly in a Cluster with Docker

Operating Wildfly in a docker container isn’t difficult. The description can be found on the official docker image site from jboss-wildfly. This blog post describes how to start several containers with a wildfly and how to connect them to a cluster. Unfortunately, the Docker-jboss document does not describe how to merge wildflys into a cluster unless they are running on the same machine. Why Wildfly in the Cluster? Wildfly itself offers the possibility to work in a cluster and replicate caches and states....

April 26, 2019 · 4 min · Auryn Engel