akka の 1 つのボックスに最大何人のアクターを配置できますか?
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?