Hacker News new | ask | show | jobs
by acjohnson55 3972 days ago
How does Akka stack up in regards to providing these attributes on the JVM?
2 comments

Akka actors are multiplexed on real JVM threads. So they implement a cooperative model of threading (i.e. you'd better not block for long inside the body of an actor)
Unless Akka provides a compiler, it doesn't allow much of the style Erlang was developed for.