Java is slow.
That's more then an "urban legend", it's seems to be a fact. You don't use it for live-coding because of latency, you don't use it for clusters and parallel computing, and so. There are thousands of benchmarks out there and it was asked alot of times, specially "Java vs C# vs C++".
The thing is this:
http://shootout.alioth.debian.org/
According to this, not only Java performance is almost as good as C (far from the rest), but Scala and Clojure (both functional languages which runs on the JVM) both have a better performance that OCaml, Erlang and so.
And there are alot of "Java is faster then X" out there, also (for instance, a question here on SO: Java Runtime Performance Vs Native C / C++ Code?).
So it seems to be fast, for certain cases. Can someone explain why? Why is it that bytecode might run faster then native code, in some cases, given dynamic code (Scala, Clojure) and garbage collection? And how come if it is faster, there is still latency (as i said in the beggining, you can't have a "Fluxus" on Java because of latency.
It seems a contradiction, i just don't get it.
Thanks!