Green Thread - Definição do Glossário de CI/CD
Uma green thread é uma thread gerenciada e escalonada pelo runtime da linguagem em vez do sistema operacional; o runtime multiplexa enormes quantidades delas sobre um pequeno pool de threads do SO, viabilizando concorrência massiva (por exemplo, goroutines) a baixo custo.
Guias relacionados
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…