Sunday, April 11, 2010

Always make sure your JVM is runnig is SERVER mode not in client mode

Hi,

JVM can run in many modes and selecting a proper mode can help improve your application performance

In servers, make sure JVM is runnig in server mode . This activates the server hotspot JIT.
It may need more time to start. But this delivers best performance.

Other modes of JVM are client and classic mode.

make sure -server, should be the first argument to java