Java
-
The Chameleon Function
In Doctor Who the character Kamelion was a robot which could take any form. The physical prop they used was…
Read More » -
The Final Word on “final”
In Java, overuse of final feels like SHOUTING. It’s outdated and inappropriate much of the time. Java and JavaScript This…
Read More » -
JVM with no garbage collection
JVM community keeps on adding new GC and recently new one was added and it is called Epsilon and is very…
Read More » -
Need driven software development using Mocks
Excellent paper on mocking framework by jmock author. This paper was written in 2004 that is 18 years ago but…
Read More » -
How to Convert a Java Object into a JSON String
When learning how to write Java-based software, one of the first snags developers hit is how to connect their code…
Read More » -
Adapter Design Pattern In Java
The Adapter design pattern is a structural design pattern that helps us to connect to the legacy or third-party code that exposes a similar…
Read More » -
Java: ChronicleMap Part 3, Fast Microservices
Standard Java Maps needs to be initialized upon startup. Learn how to leverage ChronicleMaps that is initializable from a file…
Read More » -
Java: ChronicleMap Part 2, Super RAM Maps
The standard Java Maps, such as the ubiquitous HashMap, are ultimately limited by the available RAM. Read this article and…
Read More » -
Java: ChronicleMap Part 1, Go Off-Heap
Filling up a HashMap with millions of objects will quickly lead to problems such as inefficient memory usage, low performance…
Read More »