Versions Compared

Key

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

...

스레드 성능 체크 UI로 스레드를, 작업완료 처리가 다른 Actor 에 따라 전략적 튜닝 사용가능  ( 번외 문서 : 서버 개발자의 성능 튜닝에대한 고뇌 )


Code Block
languagescala
linenumberstrue
my-blocking-dispatcher {
  type = Dispatcher
  executor = "thread-pool-executor"
  thread-pool-executor {
    fixed-pool-size = 16
  }
  throughput = 1
}
//이것은 런타임 코드가 아니라, 설정사항입니다. AKKA에서는 Thread를 직접 생성하는 코드를 작성하지 않습니다.

...