Performance
-
Core Java
Java 7 vs Groovy 2.1 Performance Comparison
I haven’t used Groovy for 2 years, since my last touch with Grails. I get stuck in (hard)core Enterprise Java,…
Read More » -
DevOps
Performance tests for slow networks with tc
tl;dr: you can easily replicate slow network conditions which makes it easier to performance test them. Smartphones have made both…
Read More » -
Core Java
ArrayList Using Memory Mapped File
Introduction In-Memory computing is picking up due to affordable hardware, most of the data is kept in RAM to meet…
Read More » -
Core Java
C++ like Java for low latency
Overview Previously I wrote an article on C like Java. This is term I had come across before. However, on…
Read More » -
Core Java
Reducing memory consumption by 20x
This is going to be another story sharing our recent experience with memory-related problems. The case is extracted from a…
Read More » -
Core Java
JVM Performance Magic Tricks
HotSpot, the JVM we all know and love, is the brain in which our Java and Scala juices flow. Over…
Read More » -
DevOps
Improve Performance by caching and compression
Web page designs are becoming innovative with rich interface which involve extra code such as java scripts, css, and images…
Read More » -
Core Java
HotSpot GC Thread CPU footprint on Linux
The following question will test your knowledge on garbage collection and high CPU troubleshooting for Java applications running on Linux…
Read More » -
Core Java
Arrays.sort versus Arrays.parallelSort
We all have used Arrays.sort to sort objects and primitive arrays. This API used merge sort OR Tim Sort underneath…
Read More »