From ac9040e8145cbf242a68e22f4e05889ba4a7fe16 Mon Sep 17 00:00:00 2001 From: "Mai, Linh" Date: Mon, 28 Jun 2021 11:28:49 +0200 Subject: [PATCH] add graal native --- radar/2021-01-01/graalnaative.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 radar/2021-01-01/graalnaative.md diff --git a/radar/2021-01-01/graalnaative.md b/radar/2021-01-01/graalnaative.md new file mode 100644 index 0000000..0399c98 --- /dev/null +++ b/radar/2021-01-01/graalnaative.md @@ -0,0 +1,14 @@ +--- +title: "Graal Native Image" +ring: trial +quadrant: tools + +--- +Graal Native Image + +Native Image is a technology to ahead-of-time compile Java code to a standalone executable, called a native image. In the process +of building a native image all library dependencies, including those from the JDK will be packed the native image. +The application created as a native image can be run without a JDK. The natively compiled applications require generally +less memory and have shorter start up times. + +We at AOE have already running microservices written in Scala with Graal Native Image