如何在 Iron 框架中启用线程功能?
How to enable the threading feature in the Iron framework?
Iron框架是否支持多线程模式?如何启用和配置它?
默认启用。
Iron
中的主要结构是 Iron
,您可以使用 http
或 listen_with
方法启动服务器。
对于http
:
Defaults to a threadpool of size 8 * num_cpus
.
对于 listen_with
:签名采用 threads usize
参数:
Kick off the server process with X threads.
我认为 X
代表作为参数传递的线程数。
Iron框架是否支持多线程模式?如何启用和配置它?
默认启用。
Iron
中的主要结构是 Iron
,您可以使用 http
或 listen_with
方法启动服务器。
对于http
:
Defaults to a threadpool of size
8 * num_cpus
.
对于 listen_with
:签名采用 threads usize
参数:
Kick off the server process with X threads.
我认为 X
代表作为参数传递的线程数。