Our great sponsors
-
ixy-languages
A high-speed network driver written in C, Rust, C++, Go, C#, Java, OCaml, Haskell, Swift, Javascript, and Python
Secondly, this chart shows that Java compares quite favorably to practically all other managed languages, and OCaml as well. The point being you can go quite a ways without explicit stack allocation. Java is used in HFT and other low latency applications (although the writing style is different from your normal Java app), so it's possible to write very high performant code with it. Valhalla will only push the boundaries further.
-
Repo: https://github.com/openjdk/valhalla
-
Scout APM
Less time debugging, more time building. Scout APM allows you to find and fix performance issues with no hassle. Now with error monitoring and external services monitoring, Scout is a developer's best friend when it comes to application development.
-
It is in certain cases. Not all optimizations can be done at runtime, otherwise you wouldn't have the CLR folks for example workin on implementing devirtualization (https://github.com/dotnet/runtime/issues/7541), which the JVM is very good at. Or things like dynamic inlining which enables enabling and disabling JFR "for free". Here are some good talks
-
Example of how it makes life worse