Originally posted by Ethan Henry:
There are few good resourced for figuring out the internals of various Java implementations.
Originally posted by Thomas SMETS:
Partial answer :-)
As far as I remember : Server = HotSpot
D:\temp>java -hotspot
Usage: java [-options] class [args...]
(to execute a class)
or java -jar [-options] jarfile [args...]
(to execute a jar file)
where options include:
-client to select the "client" VM
-server to select the "server" VM
-hotspot is a synonym for the "client" VM [deprecated]
The default VM is client.