Ok, this might be a rather silly question, but what is the benefit of using parallel collections within an actor framework? That is, if I'm only dealing with one message at a time from an actor's mailbox, is there even a need for a parallel collection? Are parallel collections and actors mutually exclusive? What is a use case that would involve both?
|
They solve different problems . Actors are good at solving task parallel problems. While parallel collections are good at solving data parallel problems. I don't think they are mutually exclusive - you can use parallel collections in actors and parallel collections containing actors. Edit - quick test: Even something simple like a actor notification loop benefits. In the following code we register a million actors with an actor registry which has to notify them of an event. The non-parallel notification loop (
|
|||||||||
|
|
Actors library in Scala is just one of the options, approaches to concurrency, among many (threads & locks, STM, futures/promises), and it's not supposed to be used for all kinds of problems, or to be combinable with everything (though actors and STM could make a good deal together). In some cases, setting up a group of actors (workers + a supervisor) or explicitly splitting up a task into portions, to feed them to the fork-join pool, is too cumbersome, and it's just way handier to call All in all, actors and parallel collections are different dimensions of the problem - actors is a concurrency paradigm, whilst parallel collections is just a useful tool that should be viewed not as a concurrency alternative, but rather as an augmentation of the collections toolset. |
||||
|
|