Reactor Pattern - CI/CD用語集の定義
Reactor pattern は、多数の I/O ソースを待つデマルチプレクサ(epoll、kqueue)を中心にイベント駆動システムを構成し、準備完了した各イベントをそのハンドラへディスパッチします。これにより、単一のスレッドがリクエストごとにブロックすることなく数千の接続を処理できます。
関連ガイド
Event Loop - CI/CD Glossary DefinitionAn event loop repeatedly waits for events - I/O readiness, timers, messages - and dispatches their handlers o…
Async Runtime - CI/CD Glossary DefinitionAn async runtime schedules asynchronous tasks to completion on a thread pool, providing the event loop, timer…
Work Queue - CI/CD Glossary DefinitionA work queue holds pending tasks that worker threads pull and execute, decoupling submission from execution a…