Y
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
pathsjs
3971 days ago
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)
link
dozzie
3971 days ago
Unless Akka provides a
compiler
, it doesn't allow much of the style Erlang was developed for.
link