Chapter 6
- GraalVM Native Image is an ahead-of-time compilation technology that generates standalone native executables.
- Quarkus moves to the build phase many of the tasks that regular Java applications perform at runtime, which reduces drastically its startup time.
- No, native image packaging doesn’t always improve the application’s performance.
- Short-lived applications benefit from native image packaging.
- The
quarkus.native.resources.includes config
property can be used to include additional resources in the application’s native image. - Because we’ll be distributing our application as a Linux container image.