Fiber - CI/CD用語集の定義
Fiber は、OS にプリエンプトされるのではなく明示的に制御を譲る、ユーザー空間で協調的にスケジュールされる実行単位です。多数の fiber が少数の OS スレッドに多重化され、カーネルスレッドのオーバーヘッドなしに安価な並行性を提供します。
関連ガイド
Green Thread - CI/CD Glossary DefinitionA green thread is a thread scheduled by a language runtime instead of the OS, so a program runs millions chea…
Coroutine - CI/CD Glossary DefinitionA coroutine is a function that can suspend and resume at defined points, keeping its state across yields - th…
Thread Pool - CI/CD Glossary DefinitionA thread pool keeps a fixed set of reusable threads to run submitted tasks, avoiding per-task thread creation…