Tag Archives: nio

Jersey Performance Improvement (Step One) | Code Review | Head Crashing Informatics 82

Let’s take a deep dive into the source code of #Jersey (the heart of GlassFish, Payara and Helidon) to learn how we can make our own I/O code run faster on modern Java. In this first step, we apply NIO … Continue reading

Posted in Java, Open Source, Programming, Projects, The Two Minutes Tuesday | Tagged , , , , , , | Comments Off on Jersey Performance Improvement (Step One) | Code Review | Head Crashing Informatics 82

Jersey powered by NIO | The Two Minutes Tuesday 041 | Open Source

Thanks to my latest contribution, #Jersey now runs on #NIO – and is considerably more efficent. 🚀 #performance #java If you like this video, please give it a thumbs up, share it, subscribe to my channel, or become my patreon … Continue reading

Posted in Java, Open Source, Programming, Projects, The Two Minutes Tuesday | Tagged , , , , , , | Comments Off on Jersey powered by NIO | The Two Minutes Tuesday 041 | Open Source

I DOUBLED InputStream Performance! | The Two Minutes Tuesday 029 | Java Inside

I was asked how far my contribution to #OpenJDK is: While I am still working on edge cases, performance of InputStream::transferTo is already doubled (!!!) and I think that in one of my next videos I can show you the … Continue reading

Posted in Java, Open Source, Programming, The Two Minutes Tuesday | Tagged , , , , , , , | Comments Off on I DOUBLED InputStream Performance! | The Two Minutes Tuesday 029 | Java Inside

CompletableFuture in I/O-bound applications

Hardware access needs long time Applying reactive programming to improve performance by utilizing all CPU cores became rather easy with Java 8 thanks to CompletableFuture. This is nice when an application is mostly CPU-bound, i. e. when it performs in-memory operations. But … Continue reading

Posted in Allgemein, Java, Programming | Tagged , , , | Comments Off on CompletableFuture in I/O-bound applications