Skip to main content
Version: 2.3.0(Legacy)

线程模型

说明#

  • 本文主要介绍soul的线程模型,以及各种场景的使用。

io与work线程#

  • soul内置依赖 spring-webflux 而其底层是使用的netty,这一块主要是使用的netty线程模型。

业务线程#

  • 默认使用调度线程来执行。
  • 默认使用固定的线程池来执行,其线程数为 cpu * 2 + 1。

切换类型#

  • reactor.core.scheduler.Schedulers
  • 可以使用 -Dsoul.scheduler.type=fixed 这个是默认。 设置其他的值 就会使用弹性线程池来执行Schedulers.elastic()
  • 可以使用 -Dsoul.work.threads = xx 来指定线程数量,默认为 cpu * 2 + 1,最小为16个线程。