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. |
||
|
|
|
|
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. |
||||||
|
|
|
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. |
||
|
|
