You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _includes/performance.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ <h2>Starting fast by doing less: the build-time principle</h2>
33
33
<divclass="width-12-12">
34
34
<h2>High concurrency without the headaches: the reactive core</h2>
35
35
<p>Quarkus is built on reactive principles, using an efficient asynchronous, non-blocking engine based on Netty and Eclipse Vert.x. It employs a few event loops instead of a large thread pool, reducing resource usage and improving response times by optimizing for hardware behavior.</p>
36
-
<p>Quarkus offers three development models:</p>
36
+
<p>Reactive underneath does not mean you must write reactive code. Quarkus offers three development models:</p>
37
37
<ol>
38
38
<li><strong>Imperative model:</strong> A traditional synchronous approach with faster execution due to an optimized I/O layer, ideal for lower concurrency. High concurrency increases memory use.</li>
39
39
<li><strong>Reactive model:</strong> Enables high concurrency with minimal resources using asynchronous, non-blocking code, but is more complex to implement and debug.</li>
0 commit comments