Java
-
In which region intern strings are stored?
intern() is an interesting function in java.lang.String object. intern() function eliminates duplicate string objects from the application and has potential…
Read More » -
Garbage Collection CPU Statistics
When a Garbage Collection event runs, it spends a predominant amount of its time in the Java application layer. It…
Read More » -
Declarative and Immutable Pipeline of Transformations
A few months ago I made a small Java library, which is worth explaining since the design of its classes…
Read More » -
Google Cloud Function Gradle Plugin
It is easy to develop a Google Cloud Function using Java with Gradle as the build tool. It is however…
Read More » -
Google Cloud Functions (2nd Gen) Java Sample
Cloud Functions (2nd Gen) is Google’s Serverless Functions as a Service Platform. 2nd Generation is now built on top of…
Read More » -
Logging Performance Comparison
In a previous blog post, I explained the pros and cons of using logging. In this post, we’ll explore and…
Read More » -
The Case Against Logging
The one thing that all enterprise applications have in common, regardless of their framework, language, or communication protocols is that…
Read More » -
Reflection Means Hidden Coupling
Reflective programming (or reflection) happens when your code changes itself on the fly. For example, a method of a class,…
Read More » -
JVM c1, c2 compiler thread – high CPU consumption?
c1, c2 compiler threads are created by Java virtual machine to optimize your application’s performance. Occasionally these threads will tend…
Read More »