Tag: akka cluster

akka中每个主机的最大演员数

在akka的一个盒子上我们可以拥有多少个最大的演员? public void MyActor extends AkkaActor{ receive(Objet obj){ // so something } } 1)Is there some limit on max number of actors instances?I am planning to created around 10K actors on one box. I will have 50 such boxes so that i can scale horizontally 2)IS there some performance problems with this?