我们在 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?