diff --git a/_includes/performance.html b/_includes/performance.html index a6f979db205..a2d8cccbc22 100644 --- a/_includes/performance.html +++ b/_includes/performance.html @@ -21,7 +21,7 @@

Starting fast by doing less: the build-time principle

This build-time optimization offers several key benefits:

    -
  1. Reduced startup time: Quarkus performs most of the heavy work at runtime, significantly cutting startup time and allowing the app to reach peak performance faster.
  2. +
  3. Reduced startup time: Quarkus performs most of the heavy work at build-time, significantly cutting startup time and allowing the app to reach peak performance faster.
  4. Lower memory consumption: By minimizing allocations and class loading, Quarkus reduces memory usage. Replacing reflection with build-time bytecode generation further lowers the JVM's runtime workload.
  5. Better latency and improved throughput: Quarkus generates highly optimized code at build time and prunes unnecessary classes and methods. For instance, it weaves layers of indirection together, enabling better JIT optimizations. These improvements result in faster code and better latency.