Hacker News new | ask | show | jobs
by mapme 1326 days ago
Does graal native perform better than a non-native running with JIT compilation?
3 comments

Not in the community edition, but the enterprise edition appears to be quicker than JIT because of profile guided optimisations.
In certain cases it may, but generally the JIT compiled version will perform better on most workloads (but that can also use Graal)
if it's "long" running, you want the full JIT experience, because you essentially lose the entire "But how does my code actually run" optimisations that the JIT can do, and only have stuff that can be done ahead of time.