Language and platform preferences aside, I am interested in hearing how you would go about doing a conclusive performance comparison between the Java VM and .Net CLR?
I would write a suite of benchmarks designed to let you compare various different characteristics of the two VMs and their standard libraries. My expertise is in technical computing so I would recommend the following:
- In register integer arithmetic, e.g. Fibonacci.
- In register floating point arithmetic, e.g. mandelbrot.
- Array iteration, e.g. FFT.
- Allocation, e.g. purely functional red-black trees.
- Hash tables with int or float keys and values.
- Hash tables with string keys and values.
- Strings.
- Regular expressions.
- File IO.
Perhaps you can come up with something similar for databases and web services.
Don't forget that the languages sitting on top of the CLR have quite different properties. For example, inline in the F# language lets you automate optimizations that can give huge performance gains over C#. Conversely, goto in C# lets you do some things more efficiently than is possible in F# and the optimizations on structs were more effective in C# than F# (last I looked).
Are there any comprehensive and respected benchmarks that exist?
No but there are lots of scattered benchmarks that focus on the outliers because they are more interesting. For example, this blog post describes why a simple generic hash table benchmark can be 17× faster in F# on .NET than in Java on the JVM. In that case the reason was that value types and reified generics make it possible to write a much more efficient generic hash table implementation on .NET than on the JVM.