Articles


Written by Per Minborg

Standard Java Maps needs to be initialized upon startup. Learn how to leverage ChronicleMaps that is initializable from a file and reduce microservice startup times significantly and how to share
Read Article
Written by Per Minborg

The standard Java Maps, such as the ubiquitous HashMap, are ultimately limited by the available RAM. Read this article and learn how you can create Java Maps with virtually unlimited
Read Article
Written by Per Minborg

Filling up a HashMap with millions of objects will quickly lead to problems such as inefficient memory usage, low performance and garbage collection problems. Learn how to use off-heap CronicleMap
Read Article
Written by Per Minborg

Reading and writing binary data with Java can sometimes be a hassle. Read this article and learn how to leverage Chronicle Bytes, thereby making these tasks both faster and easier.I
Read Article
Written by Per Minborg

Java: How to Slash Down Building Times Using the CloudBuilding larger Java projects on a laptop with Maven can be frustrating and slow. Learn how you could slash down building
Read Article
Written by Per Minborg

Java: How to Become More Productive with Hazelcast in Less Than 5 MinutesWhat if you want to use a Hazelcast In-Memory Data Grid (IMDG) to speed up your database applications,
Read Article
Written by Per Minborg

Java Stream: Part 2, Is a Count Always a Count?In my previous article on the subject, we learned that JDK 8’s stream()::count takes longer time to execute the more elements
Read Article
Written by Per Minborg

Java Stream: Is a Count Always a Count?It might appear obvious that counting the elements in a Stream takes longer time the more elements there are in the Stream. But
Read Article
Written by Per Minborg

Java 12: Mapping with Switch ExpressionsIn this article, we will be looking at the new Java 12 feature “Switch Expressions” and how it can be used in conjunction with the
Read Article
Written by Per Minborg

Who’s Been Naughty, Who’s Been Nice? Santa Gives You Java 11 Advice!Ever wondered how Santa can deliver holiday gifts to all kids around the world? There are 2 billionkids, each
Read Article
Written by Per Minborg

Java: Aggregate Data Off-HeapExplore how to create off-heap aggregations with a minimum of garbage collect impact andmaximum memory utilization.Creating large aggregations using Java Map, List and Object normally creates a
Read Article
Written by Per Minborg

Java 11: JOIN Tables, Get Java StreamsEver wondered how you could turn joined database tables into a Java Stream? Read this short article and find out how it is done
Read Article