0
votes
2answers
95 views

Scala actor kills itself inconsistently

I am a newbie to scala and I am writing scala code to implement pastry protocol. The protocol itself does not matter. There are nodes and each node has a routing table which I want to populate. Here ...
4
votes
1answer
212 views

Scala actors: two different approaches to a scheduled multi-thread application

I'm new to Scala Actors. What I plan to build is an application that has several cartridges that each do a specific http call and retrieve+persist some info periodically. Robustness is what matters ...
4
votes
2answers
766 views

Performance of message-passing in the Actor model

I've seen benchmarks of Actor model implementations done in terms of their actors. For example, Akka actors are very lightweight (600 bytes per actor) and millions of them can be created. However, ...
0
votes
2answers
804 views

Zero-copy message-passing on the JVM

A faithful implementation of the actor message-passing semantics would mean that message contents are deep-copied from a logical point-of-view, even for immutable types. Deep-copying of message ...
27
votes
5answers
10k views

Which Actor model library/framework for Java?

There are so many different Actor model implementations for Java (and the JVM languages). A lot of Actor libraries and frameworks have been implemented to permit Actor-style programming in Java ...
8
votes
2answers
1k views

When should one use the Actor model?

When should the Actor Model be used? It certainly doesn't guarantee deadlock-free environment. Actor A can wait for a message from B while B waits for A. Also, if an actor has to make sure its ...
0
votes
1answer
473 views

Actor Model advantages to shared state

I'm reading about the Actor Model for a presentation and everyone claimes that it is superior to shared state parallel programming because it avoids many pitfalls like deadlocks and race conditions. ...