Skip to content

Commit def61b9

Browse files
authored
Fixed 'runtime' typo to 'build-time'
1 parent 55d85f0 commit def61b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_includes/performance.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h2>Starting fast by doing less: the build-time principle</h2>
2121
<div class="width-12-12 width-12-12-m">
2222
<p>This build-time optimization offers several key benefits:</p>
2323
<ol>
24-
<li><strong>Reduced startup time:</strong> Quarkus performs most of the heavy work at runtime, significantly cutting startup time and allowing the app to reach peak performance faster.</li>
24+
<li><strong>Reduced startup time:</strong> Quarkus performs most of the heavy work at build-time, significantly cutting startup time and allowing the app to reach peak performance faster.</li>
2525
<li><strong>Lower memory consumption:</strong> By minimizing allocations and class loading, Quarkus reduces memory usage. Replacing reflection with build-time bytecode generation further lowers the JVM's runtime workload.</li>
2626
<li><strong>Better latency and improved throughput:</strong> 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. </li>
2727
</ol>

0 commit comments

Comments
 (0)