微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Google App Engine如何预编译Java?

App Engine uses a “precompilation” process with the Java bytecode of an app to enhance the performance of the app in the Java runtime environment. precompiled code functions identically to the original bytecode.

有什么详细信息吗?

最佳答案
我在googlegroups message中发现了这个:

Yes,pre-compilation reduces the time to load an application. This will
benefit you on your first request after a deploy,after you’ve been cycled
out or if more application instances are created to scale up with your load.
You will see up to 30% improved loading time on your first request.
Pre-compilation works by doing a bit of class loading work ahead of time in
the App Engine environment before the request comes in.

因此,预编译似乎是关于优化加载时间,而不是运行时性能.

原文地址:https://www.jb51.cc/java/437643.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐