I've been wondering this for a while. Please give quantitative data to support your answer.
Related: Is there a significant difference between Windows, Mac, and linux JVM performance?
|
1
|
I've been wondering this for a while. Please give quantitative data to support your answer. Related: Is there a significant difference between Windows, Mac, and linux JVM performance?
|
|||
|
|
|
Shudo has done comparisons and releases source code for microbenchmarks like linpack, Scimark, etc. Sample results for linpack:
But the last update was over 5 years ago - apparently using .NET V1.0 or v1.1, and mostly using JVM v1.4. Which means it is several releases out of date on both Java and .NET. You could get the source and generate your own results. I just did this - downloaded linpack.java and linpack.cs, compiled and ran them. I used Java v1.6.0.11 from Sun, and C# 3.0 (3.5 compiler) from Microsoft. Both on Windows Vista. For a linpack problem size of 2000, I got 17.6s for the Java version, 17.78s for the C# version. Then I ran it again and got 18.14s for Java, and 17.31 for C#. What are you Measuring?This illustrates some challenges in performance measurement and testing.
See also: |
|||
|
|
|
Check out The Computer Language Shootout. They compare numerous languages, and VMs, including Mono and JVM. |
||
|