Is there any real practical difference between "java -server" and "java -client"? All I can find on Sun's site is a vague "-server starts slower but should run faster". What are the real differences? (Using JDK 1.6.0_07 currently.)
|
This is really linked to HotSpot and the default option values which differ between client and server configuration From the whitepaper:
So the real difference is also on the compiler level:
Note: the upcoming release of jdk6 update 10 will also propose a faster startup time, but for a different reason than the hotspot options: it will be packaged differently, with a much smaller kernel. |
|||||||
|
|
IIRC the server VM does more hotspot optimizations at startup so it runs faster but takes a little longer to start and uses more memory. The client VM defers most of the optimization to allow faster startup. Edit to add: Here's some info from Sun, it's not very specific but will give you some ideas. |
|||
|
|
|
One difference I've just noticed is that in "client" mode, it seems the JVM actually gives some unused memory back to the operating system - whereas with "server" mode, once the JVM grabs the memory, it won't give it back. Thats how it appears on Solaris with Java6 anyway (using prstat -Z to see the amount of memory allocated to a process). |
|||||
|
|
The most visible immediate difference would be the memory allocated to a
as it defaults to
so with |
|||
|
|
|
IIRC, it involves garbage collection strategies. The theory is that a client and server will be different in terms of short-lived objects, which is important for modern GC algorithms. Here is a link on server mode. Alas, they don't mention client mode. Here is a very thorough link on GC in general; this is a more basic article. Not sure if either address -server vs -client but this is relevant material. At No Fluff Just Stuff, both Ken Sipe and Glenn Vandenburg do great talks on this kind of thing. |
|||
|
|
|
I've not noticed any difference in startup time between the 2, but clocked a very minimal improvement in application performance with "-server" (Solaris server, everyone using SunRays to run the app). That was under 1.5. |
|||||||||
|
|
Oracle’s online documentation provides some information for Java SE 7. On the java – the Java application launcher page for Windows, the
However (to make things interesting), under
The Server-Class Machine Detection page gives information on which VM is selected by OS and architecture. I don’t know how much of this applies to JDK 6. |
|||
|
|
|
Last time I had a look at this, (and admittedly it was a while back) the biggest difference I noticed was in the garbage collection. IIRC:
I had a pair of screenshots that showed the difference really well, but I can't reproduce as I have a 64 bit JVM which only implements the server VM. (And I can't be bothered to download and wrangle the 32 bit version on my system as well.) This doesn't seem to be the case anymore, having tried running some code on windows with both server and client VMs, I seem to get the same generation model for both... |
||||
|
|
