线程模型
Restlight
由于是使用Netty
作为底层HttpServer的实现,因此图中沿用了部分EventLoop
的概念,线程模型由了Acceptor
,IO EventLoopGroup
(IO线程池)以及Biz ThreadPool
(业务线程池)组成。
Acceptor
: 由1个线程组成的线程池, 负责监听本地端口并分发IO 事件。IO EventLoopGroup
: 由多个线程组成,负责读写IO数据(对应图中的read()
和write()
)以及HTTP协议的编解码和分发到业务线程池的工作。Biz Scheduler
:负责执行真正的业务逻辑(大多为Controller中的业务处理,拦截器等)。Custom Scheduler
: 自定义线程池
Tip
通过第三个线程池Biz Scheduler
的加入完成IO操作与实际业务操作的异步(同时可通过Restlight的线程调度功能随意调度)
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified March 10, 2022: introduce docsy as the website framework and add docs-v1.0.0 (#120) (79630ff)