Skip to content

Instantly share code, notes, and snippets.

View shubham08gupta's full-sized avatar
🏠
Working from home

Shubham Gupta shubham08gupta

🏠
Working from home
View GitHub Profile

Thread Pools

Thread pools on the JVM should usually be divided into the following three categories:

  1. CPU-bound
  2. Blocking IO
  3. Non-blocking IO polling

Each of these categories has a different optimal configuration and usage pattern.