Use headings instead of bold text in index.md #238

This commit is contained in:
Jeroen Meulemeester
2016-01-03 21:14:30 +01:00
parent b6beffec2e
commit 3d642cdad7
66 changed files with 373 additions and 233 deletions

View File

@ -10,7 +10,8 @@ tags:
- Performance
---
**Intent:** It is often the case that tasks to be executed are short-lived and
## Intent
It is often the case that tasks to be executed are short-lived and
the number of tasks is large. Creating a new thread for each task would make
the system spend more time creating and destroying the threads than executing
the actual tasks. Thread Pool solves this problem by reusing existing threads
@ -18,6 +19,7 @@ and eliminating the latency of creating new threads.
![alt text](./etc/thread-pool.png "Thread Pool")
**Applicability:** Use the Thread Pool pattern when
## Applicability
Use the Thread Pool pattern when
* you have a large number of short-lived tasks to be executed in parallel