Performance Comparison of Primitive Lists in Java Java 1. Overview In this tutorial, we’re going to compare the performance of some popular primitive list libraries in Java. For that, we’ll test the add(), get(), and contains() methods for each library. 2. Performance Comparison Now, let’s find out which library offers… Continue Reading java-list-primitive-performance

Introduction to Vert.x 1. Overview In this article, we’ll discuss Vert.x, cover its core concepts and create a simple RESTfull web service with it. We’ll start by covering the foundation concepts about the toolkit, slowly move forward to an HTTP server and then build the RESTfull service. 2. About Vert.x… Continue Reading vertx

Interoperability Between Java and Vavr 1. Overview As Vavr primarily works within the Java ecosystem, there’s always a need to convert Vavr’s data structures into Java-understandable data structures. For example, consider a function which returns an io.vavr.collection.List, and we need to pass on the result to another function which accepts java.util.List. This… Continue Reading java-vavr