Asynchronous Processing

Thread Pool

English

Overview

A mechanism that creates a fixed number of threads in advance and reuses them.

Details

Since creating and destroying a thread for every single task is costly, tasks are instead assigned to a pool of pre-created threads and reused. It's widely used to make server-side processing more efficient.

More Programming terms