Possible Duplicate:
Real differences between “java -server” and “java -client”?

I've seen the argument "-server" used as a command line argument for java.exe:

java.exe -server MyClass

but no matter how hard I searched the internet I found no documentation as to what exactly it does. Can anyone explain?

link|improve this question

feedback

closed as exact duplicate by Pascal Thivent, Powerlord, Avi, ewernli, Software Monk Feb 22 '10 at 18:53

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

-server

Select the Java HotSpot Server VM. On a 64-bit capable jdk only the Java HotSpot Server VM is supported so the -server option is implicit. This is subject to change in a future release.

Basically, the server VM does stuff in a different way to the client VM. It has different styles of garbage collection, and it may take longer to load up (but generally has higher throughput).

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.