I am using Scala/Akka for a server/worker style program. I am currently using a RoundRobinRouter for load balancing between my worker actors. But I wonder if there is any better router? Or is there any “best”?
I am using Scala/Akka for a server/worker style program. I am currently using a
Share
Ther is a
SmallestMailboxRouter. This router adds new messages to the slave with the shortest mailboxqueue. You canfind the documentation here. Another way is using aLoadBalancer. I only found it in the pdf.