What you really need to do is put a timer around the actual loop. Much of
what you are 'timing' in your test is the startup of the JVM which is not
relevant to 'speed' in running a servlet engine.
Regards,
Charles
-----Original Message-----
From: Laurent Michenaud
To: [EMAIL PROTECTED]
Sent: 11/28/2001 9:54 AM
Subject: Best JDK For Tomcat ?
Hi,
I would like you to comment these results, tell me about your
experiences, and tell me about which jdk is best for a Tomcat...
I'm testing the different jdk with a litte Test.java
Here's the following execution time :
sun jdk1.2.2_rev9 => 16 seconds
sun jdk1.3.1_01 => 2 seconds
ibm jdk1.1.8 => more than 2 minutes, it didnot finish.
ibm jdk1.3 => 3 seconds
Here the Test.java i've done :
( u may think about revelent instructions to add in it, please
tell me about ):
public class Test
{
public static void main( String args[] )
{
Integer i ;
String t ;
for( int cpt = 0 ; cpt < 500000 ; cpt++ )
{
cpt++ ;
cpt-- ;
t = new String("12345");
i = new Integer("12345");
i.toString();
}
}
}
Michenaud Laurent
- Adeuza -
[ D�veloppeur Web - Administrateur R�seau
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>