chaokunyang commented on code in PR #168: URL: https://github.com/apache/fury-site/pull/168#discussion_r1728377437
########## i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/graalvm_guide.md: ########## @@ -0,0 +1,231 @@ +--- +title: GraalVM 指南 +sidebar_position: 6 +id: graalvm_guide +--- + +## GraalVM Native Image 介绍 + +GraalVM Native Image 能够将 Java 应用代码编译成为原生的本地应用程序代码,以构建更快、更小、更精简的应用程序。 +其不能使用 JIT 编译器将字节码编译为机器码,并且在没有配置相关反射文件的前提下不支持反射。 Review Comment: ```suggestion 其不能使用 JIT 编译器将字节码编译为机器码,并且在没有配置相关反射文件的前提下不支持反射,在很多情况下使用成本较高。 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
