Search

Fast thread

Universal Java Thread Dump Analyzer

Tag

JVM performance

LARGE OR SMALL MEMORY SIZE FOR MY APP?

The article discusses the optimal strategy for application memory sizing: large memory with few instances or small memory with many instances. Two successful technology companies exemplify contrasting approaches. Both strategies can succeed, depending on team competence. Large memory is more expensive, but business needs may dictate memory requirements. Experience and emotions influence decisions.

DOES 32-BIT OR 64-BIT JVM MATTER ANYMORE?

The article compares 32-bit and 64-bit Java Virtual Machines (JVMs), highlighting that while 64-bit JVMs can support larger memory, they may suffer slight performance degradation. The choice of JVM depends on memory needs: applications requiring over 2GB should use 64-bit JVM, considering garbage collection pause times and native library compatibility.

Up ↑