Are you sure?

On on of our Xserves:
emerald:~ local$ java -version
java version "1.5.0_06"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-113)
Java HotSpot(TM) Server VM (build 1.5.0_06-68, mixed mode)

On my OS X client:
vdoop:~ mschrag$ java -version
java version "1.5.0_13"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13- b05-237)
Java HotSpot(TM) Client VM (build 1.5.0_13-119, mixed mode, sharing)

ms

On Dec 19, 2007, at 11:22 AM, Mr. Pierre Frisch wrote:

No the default setting on MacOSX is always -client. If you want the server JVM you have to include the -server option. You can check this very easily by trying "java -version" and "java -server - version".

java -version
java version "1.5.0_13"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13- b05-237)
Java HotSpot(TM) Client VM (build 1.5.0_13-119, mixed mode, sharing)


java -server -version
java version "1.5.0_13"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13- b05-237)
Java HotSpot(TM) Server VM (build 1.5.0_13-119, mixed mode)


Pierre
--
Pierre Frisch
[EMAIL PROTECTED]


On Dec 19, 2007, at 7:30, Mike Schrag wrote:

The -server parameter works with all version of the Hotspot JVM. The Hotspot JVM comes in two variety the server and the client, with different optimization. The default (client) optimize for UI and speed of startup. The server version will take longer to start but with optimize better the generated code which is typically what you want in WO application. I would recommend to set that parameter by default on all your applications as I have never found any negative effect for WO apps.
I actually thought that on an Xserve -server was the default setting? Now I'm doubting myself and I have to go check :)

ms

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-deploy mailing list ([email protected] )
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-deploy/pierre%40apple.com

This email sent to [EMAIL PROTECTED]



_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-deploy mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-deploy/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to