【发布时间】:2013-09-30 03:28:40
【问题描述】:
在 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?
【问题讨论】:
标签: java akka akka-cluster