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 (which doesn't have Actors built-in). I think the Actor model has big advantages, but the choices for Java are overwhelming!

Can someone post the most popular ones and offer some insight into which to use? Which ones have benchmarks for throughput in terms of messages passed per second?

link|improve this question
1  
Don't see how it's a duplicate of stackoverflow.com/questions/436050/events-in-java, except that one of the answers was "Actors". And the first was kind of dead (no mention of Kilim, Akka, or Jetlang). – Mr. White Jul 28 '10 at 22:06
Also search for "[java] actors" – oluies Jul 29 '10 at 7:28
feedback

4 Answers

up vote 18 down vote accepted

This is a good article series. Also see this presentation.

Killim and Akka (scala) has the best performence . I would suggesst using Akka. Use akka as an frontend and call your java code if you dont want to do all of the coding in Scala. Scala and Akka has a very nice syntax and API. Akka has a Java API called "Active Objects". Note that there is a lot of things happening in Akka right now so the code base is moving fast. See the Java getting started doc

Killim is java based but does compile time weawing.

Jetlang and FunctionalJava are options that does not do compile time weawing (??unsure), but is not as fast as Akka and Killim (no current data on this, but there are some old numbers in Jonas Boners and Viktor Klangs talk at Scala Days 2010 ).

Other options is using regular JMS (or some other MQ / PubSub). Also you could do your own simple intra JVM publication channels / workers. Or just use java util concurrent ExecutorService or com.google.common.util.concurrent

Other Scala based frameworks/libraries with Actor implementations are Stambecco, Lift and Scalaz.

link|improve this answer
Thanks for all the helpful links + explanation. – Mr. White Jul 28 '10 at 22:02
2  
Also worth mentioning is that Akka has a Java API (Active Objects) – Viktor Klang Jul 28 '10 at 23:25
feedback

We did a related study titled "Actor frameworks for the JVM platform: A Comparative Analysis", which was published last year and compares the syntax, semantics and performance of some of the JVM based Actor frameworks. It is available at http://osl.cs.uiuc.edu/docs/pppj09/paper.pdf. I hope you find it useful.

link|improve this answer
Would you care to comment on what has happened since? – Thorbjørn Ravn Andersen Apr 1 at 11:40
feedback

The Scala Actors is my best suggestion.

See http://www.scala-lang.org/node/242 for a short tutorial.

link|improve this answer
Can Scala Actors be used in Java? (I still appreciate answers that use the JVM.) – Mr. White Jul 28 '10 at 20:52
2  
Scala is a 100% JVM compatible language, so, Yes you can use it in Java. – StudiousJoseph Jul 28 '10 at 21:25
1  
I think you should say "use it with java". Eg it is faily easy to call Java from Scala and to call Scala from Java. But it it is kinda just another jar file: blog.lostlake.org/index.php?/archives/… – oluies Jul 28 '10 at 22:01
@Brent: Thanks for the clarification. – Mr. White Jul 28 '10 at 22:05
feedback

Well, I was looking for a good actors implementation in Scala, and looked at both native Scala and Akka. I found both of these over-complex. Then I found Lift Actors, which I found simple, elegant and well-designed. All the above are usable from Java (via Java-friendly named methods).

Discussion at: http://erikengbrecht.blogspot.com/2009/06/pondering-actor-design-trades.html

Download at: http://liftweb.net/

You just need lift-actor_?.jar and lift-common_?.jar from the Lift downloads (plus Scala std lib). Take a look at the Lift actors Scala source: very neat.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.