Green Thread - CI/CD用語集の定義
Green thread は、オペレーティングシステムではなく言語ランタイムによって管理・スケジュールされるスレッドです。ランタイムはそれらの膨大な数を小さな OS スレッドのプールに多重化し、低コストで大規模な並行性(例: goroutine)を実現します。
関連ガイド
Fiber - CI/CD Glossary DefinitionA fiber is a lightweight, cooperatively scheduled thread of execution managed in user space, letting one OS t…
Thread Pool - CI/CD Glossary DefinitionA thread pool keeps a fixed set of reusable threads to run submitted tasks, avoiding per-task thread creation…
Structured Concurrency - CI/CD Glossary DefinitionStructured concurrency scopes concurrent tasks to a block so they all finish or cancel before it exits, makin…