Y
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
heretoo
1326 days ago
Not in the community edition, but the enterprise edition appears to be quicker than JIT because of profile guided optimisations.
link
kaba0
1326 days ago
In certain cases it may, but generally the JIT compiled version will perform better on most workloads (but that can also use Graal)
link
Twirrim
1326 days ago
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.
link