• 30 December

    [Fixed] Initial heap size set to a larger value than the maximum heap size

    Learn about how to fix Initial heap size set to a larger value than the maximum heap size in java.

  • 15 September

    What are Xmx and Xms parameters in java

    In this post, we will see about Xms and Xmx parameter in java. -Xmx specifies maximum memory size for Java virtual machine (JVM), while -Xms specifies the initial memory size. It means JVM will be started with Xms amount of memory and JVM will be able to use maximum of JVM amount of memory. Let’s […]

  • 16 July

    Garbage Collection in java

    In this post, we will see about Garbage Collection in java. I will try to explain with the help of diagrams and examples rather than theory. JVM Memory is divided into three parts Young generation Old generation Metaspace (Perm Gen) Young Generation As the name suggests, young generation is the area where newly created objects […]

  • 19 August

    Java virtual Machine(JVM) and its architecture

    In this article, you will know about java virtual machine which made Java as more popular. We all know that Java applications can be write once and run many times anywhere. This is possible with only JVM. Because Java was designed to run on a virtual machine. A virtual machine is software. This JVM will […]