Tag

IO-bound

0 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Apr 18, 2025 · Fundamentals

Understanding Multithreading in Python with the threading Module

This article explains Python's multithreading concepts, covering thread creation via subclassing Thread or using target functions, synchronization mechanisms like Lock, RLock, and Condition, and discusses the impact of the Global Interpreter Lock, helping readers apply threading effectively for I/O‑bound tasks.

GILIO-boundMultithreading
0 likes · 9 min read
Understanding Multithreading in Python with the threading Module
Java Architect Essentials
Java Architect Essentials
Oct 12, 2021 · Backend Development

How to Determine the Optimal Number of Threads in a Java Thread Pool

This article explains theoretical formulas and practical guidelines for calculating the optimal thread pool size in Java, covering CPU‑bound and I/O‑bound workloads, how to measure CPU cores and blocking ratios, and provides example calculations and code snippets.

Backend DevelopmentConcurrencyIO-bound
0 likes · 12 min read
How to Determine the Optimal Number of Threads in a Java Thread Pool