Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • RoundRobin : 단순하게 순차적으로
  • Smallest-MailBox : 대기열이 적은곳으로


Akka에서는 유용한 몇가지 라우터를 제공하며 이용할수 있습니다.

라우터에 대한 심화학습 : https://getakka.net/articles/actors/routers.html

스레드풀 구성

Code Block
languagec#
themeEmacs
# 기본 스레드 풀 사용
fast-dispatcher {
	type = Dispatcher
	throughput = 2
}

# 기본 스레드 풀 사용
slow-dispatcher {
	type = Dispatcher
	throughput = 7
}

...