1
vote
1answer
773 views

scala/akka performance versus java 7 fork/join

I am new to Scala/Akka, although I am very well familiar with the concept of actor-based modeling. I am trying to parallelize an existing code for better performance, and I have two versions: one in ...
0
votes
0answers
270 views

Scala / Akka: NullPointerException on master actor?

I'm very new to Akka for Scala and I'm getting an error message, which I don't understand. My code basically runs an evolutionary algorithm. For each new individual that is created during one ...
4
votes
1answer
302 views

fork and join using Akka

problem statement: I have a portfolio of securities that need to be processed in a parallel fashion. In Java i used a threadpool to process each security, and use a latch to countdown. Once complete I ...
1
vote
2answers
984 views

Using akka futures and actors for parallelizing a list

I want to send a list of messages to an actor, receive a reply immediately in a future and then wait for all futures to complete before returning to the calling method. From reading the akka docs, I ...
1
vote
1answer
266 views

Parallelization/threads inside a web request in Scala/Java?

I have a webservice that is doing a number of database queries (to MongoDB) and then doing a non-trivial amount of processing on the records returned by those database queries. Each web request needs ...