Skip to content

Commit c77835e

Browse files
committed
Fix typo (Thanks Aurea)
1 parent d675050 commit c77835e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2023-09-19-virtual-thread-1.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ But there is a limit to that imperative model.
7575
You can only handle _n_ requests concurrently, with _n_ the number of threads the framework can create.
7676
OS threads are expensive.
7777
They consume memory (around 1 Mb per thread), are expensive to create, use CPU to schedule them…
78-
Frameworks use thread pools to allow reusing idle threads, but when the concurrency level exceeds your number of threads, you start pilling up requests, reducing the response time, and, in the worst case, even rejecting requests.
79-
Increasing the thread pool size and, consequently, increasing the memory usage can blow up your Cloud bill and deployment density.
78+
Frameworks use thread pools to allow reusing idle threads, but when the concurrency level exceeds your number of threads, you start pilling up requests, increasing the response time, and, in the worst case, even rejecting requests.
79+
Increasing the thread pool size and, consequently, swelling the memory usage can blow up your Cloud bill and deployment density.
8080
Futhermore, adding more threads may not even improve the concurrency as explained by the https://youtu.be/07V08SB1l8c?t=142[Little Law].
8181

8282
The reactive movement proposed an alternative model to work around that issue.

0 commit comments

Comments
 (0)