Sandeep Choudharysandeepc.hashnode.dev·Aug 14, 2024Fine-Tuning the JVM for Enterprise ApplicationsJava Virtual Machine (JVM) tuning is crucial for optimising the performance of enterprise applications. Proper tuning can lead to significant improvements in application responsiveness, throughput, and resource utilisation. Here’s a comprehensive gui...3 likesDevelopmentjvm
Ritesh Panigrahiriteshpanigrahi.com·Jun 5, 2024Understanding the Java Memory Model and 'Happens-Before' PrincipleThe Java Memory Model (JMM) explains how different threads in a Java program can see and use shared variables. It tells us when one thread make any changes to a variable that become visible to other threads and how to properly coordinate access to th...1 like·954 readsjava memory model
Shainil P Scodeshaine.hashnode.dev·Jan 20, 2024Do you know about stack memory !!I always wondered how memory management works in programming language. i saw lot of videos , read some blog and finally came to understand these concepts. Well you might know already how memory management works in programming but still you can read t...stack memory
Piotrpiotrd.hashnode.dev·Aug 1, 2023Containerized JVM OOMKilled problemSymptoms You have deployed your container to Kubernetess. You are using Netty to utilise your hardware in most efficient manner. After some time you are seeing memory usage that is increasing. Expecting some memory leaks you connect to a jvm to profi...2 likes·1.4K readsJava
Shivansh Narayanaveragesde.hashnode.dev·Jun 18, 2023Java Garbage Collection | Part-1One of the many things that make Java special is its automatic garbage collection. As an application developer using Java, this comes in very handy as you don't have to think about memory leaks (for the most part) For me, GC and JVM used to be like a...249 readsJava