akka
What is a general good practice for configuring core-pool-size-factor and max-pool-size-factor settings?
开发者_运维技巧For example, if the CPU has four cores and eight core threads. Should I set the core-pool-size-factor setting all the way to 8?[详细]
2023-03-12 10:15 分类:问答BoundedBlockingQueue Java
I am looking for a BoundedBlockingQueue that can take any other Queue and make it bounded and blocking.[详细]
2023-03-12 05:54 分类:问答Message delivery sequence in akka actors
I\'m pretty new to Akka and couldn\'t find the answer in the reference manual. Suppose we have remote actors distribut开发者_Python百科ed in the cluster of 3 machines (A, B, C), where one actor lives[详细]
2023-03-09 14:46 分类:问答scala doesn't like self variable in akka?
import actors.Actor import akka.actor.Actor._ class HelloWorldActor extends Actor { def receive = { case msg => self reply (msg + \"world\")[详细]
2023-03-07 22:37 分类:问答Porting python-twisted based code to scala: framework advice needed
I am trying to port a significant amount of code written in python with twisted to scala, and I\'m looking for opinions on what framework combination to choose.[详细]
2023-03-06 13:08 分类:问答akka how to to launch a master task and block on it finishing?
I\'m trying to get started with akka in scala. In the main scala thread I\'d like to start an akka actor, send one message to it, and block until that actor terminates. What is the best way to do this[详细]
2023-03-05 22:46 分类:问答How are the multiple Actors implementation in Scala different?
With the release of Scala 2.9.0, the Typesafe Stackwas also announced, which combines the Scala language with the Akka framework. Now, though Scala has actors in its standard library, Akka uses its ow[详细]
2023-03-05 14:37 分类:问答How do we test Actors in Java?
The only thing I\'ve seen so far is someone posting an example of testing a TypedActor. I take it there\'s no way of testing an UntypedActor through say Junit? Akka docs are getting开发者_开发技巧 bet[详细]
2023-03-05 11:14 分类:问答How can I use a TypedActor in a Java application?
I try to implement a TypedActor in Java following the examples on Typed Actors (Java). But I\'m struggling. I have added akka-actor-1.1-M1.jar, akka-typed-actor-1.1-M1.jar, scala-library.jar but it wa[详细]
2023-03-01 17:40 分类:问答Why is my Dispatching on Actors scaled down in Akka?
I have an actor pool of 100 running Actors which share a work stealing dispatcher with its CorePoolSize set to 100. But now when sending 19 messages to one of the Actors the 19 messages aren\'t parall[详细]
2023-03-01 12:44 分类:问答