本文介绍了JEP 145发生了什么(由于编译代码重用,jvm启动速度更快)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

2012年,已创建,以便
在java中缓存已编译的本机代码,用于更快的jvm初创公司

In 2012, a JEP 145 has been created in order to
cache compiled native code in java for faster jvm startups.

那时,

然而,。

它发生了什么?这个想法听起来很棒。

我找不到官方声明为什么以及何时取消这个项目。

What happened to it? The idea sounds great.
I could not find an official statement why and when this project has been cancelled.

推荐答案

JEP的文本仍然可以在:

The text of the JEP is still available in the JEP source repository:

似乎没有记录它被取消的原因。但我们现在知道并解决了许多相同的问题,可能是一种更容易实现和维护的方式。事实上,AOT JEP说:

There doesn't seem to be a documented reason for it to be canceled. But we now know that AOT is in the works and it solves many of the same problems, possibly in a way that's easier to implement and maintain. In fact, the AOT JEP says:

这似乎解释了为什么145不可行。

That certainly seems like an explanation of why 145 is not the way to go.

这篇关于JEP 145发生了什么(由于编译代码重用,jvm启动速度更快)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 13:47