Programming model distinguished by ubiquitous asynchronous communication.

learn more… | top users | synonyms (1)

82
votes
4answers
12k views

Scala actors: receive vs react

Let me first say that I have quite a lot of Java experience, but have only recently become interested in functional languages. Recently I've started looking at Scala, which seems like a very nice ...
81
votes
3answers
22k views

How does LMAX's disruptor pattern work?

http://code.google.com/p/disruptor/ I am trying to understand the disruptor pattern. I have watched the infoq video and tried to read their paper. I understand there is a ring buffer involved, that ...
53
votes
3answers
2k views

Akka Actor not terminating if an exception is thrown

I am currently trying to get started with Akka and I am facing a weird problem. I've got the following code for my Actor: class AkkaWorkerFT extends Actor { def receive = { case Work(n, c) if n ...
42
votes
2answers
4k views

Is F# really faster than Erlang at spawning and killing processes?

Updated: This question contains an error which makes the benchmark meaningless. I will attempt a better benchmark comparing F# and Erlang's basic concurrency functionality and inquire about the ...
40
votes
5answers
2k views

The actor model: Why is erlang special? Or, why do you need another language for it?

I've been looking into learning erlang, and as a result, have been reading (okay, skimming) about the actor model. From what I understand, the actor model is simply a set of functions (run within ...
39
votes
5answers
6k views

Different Scala Actor Implementations Overview

I'm trying to find the 'right' actor implementation. I realized there is a bunch of them and it's a bit confusing to pick one. Personally I'm especially interested in remote actors, but I guess a ...
37
votes
3answers
3k views

What's the difference between the different Actors implementation in Scala?

With the release of Scala 2.9.0, it was also announced the Typesafe Stack, which combines the Scala language with the Akka framework. Now, though Scala has actors in its standard library, Akka uses ...
33
votes
2answers
3k views

Scala Actors - Worst practices?

I feel a bit insecure about using actors in Scala. I have read documentation about how to do stuff..but I guess I would also need some DON'T rules in order to feel free to use them. I think I am ...
33
votes
8answers
7k views

Any good implementation of Actors for C#?

Is there any good implementation of actors concurrency model for .net/c#? I have to optimize a c# routine and i think that actors model fits perfectly as a solution for my problem. Unfortunately i ...
29
votes
1answer
5k views

Scala Actors vs JMS

What are the differences using Scala Actors instead of JMS? For example from a performance and scalability perspective, what does the Scala Actor model add compared to JMS? In which cases does it ...
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 ...
26
votes
3answers
4k views

Can Scala actors process multiple messages simultaneously?

The reply to a recent question of mine indicated that an actor processed its messages one at a time. Is this true? I see nothing that explicitly says that (in Programming in Scala), which contains the ...
26
votes
2answers
3k views

How does Actors work compared to threads?

Is there any good and short explanation of how Actors works compared to threads? Can't a thread be seen as an actor and send messages to other threads? I see some difference, but it's not that clear ...
25
votes
3answers
3k views

What's the difference of the Akka's Actor with Scala's Actor model

I found there is also an Akka actor model, so I am wondering what's the difference between the Akka's Actor and Scala's Actor model?
24
votes
2answers
3k views

Design patterns/best practice for building Actor-based system

I am struggling to find any decent links to design patterns, best practice or good, basic architectural principles that should be used in building Actor-based apps. Those few that I know of are: Blog ...
20
votes
1answer
3k views

How Clojure's agents compare to Scala's actors?

I wrote a simulation of the Ring network topology in Scala (source here) (Scala 2.8 RC7) and Clojure (source here) (Clojure 1.1) for a comparison of Actors and Agents. While the Scala version shows ...
18
votes
3answers
4k views

Design patterns for Agent / Actor based concurrent design

Recently i have been getting into alternative languages that support an actor/agent/shared nothing architecture - ie. scala, clojure etc (clojure also supports shared state). So far most of the ...
17
votes
2answers
4k views

How does I/O work in Akka?

How does the actor model (in Akka) work when you need to perform I/O (ie. a database operation)? It is my understanding that a blocking operation will throw an exception (and essentially ruin all ...
16
votes
6answers
5k views

Scala remote actors

Are there any guides or tutorials which explain the possibility to use scala actors remotely? All I have found until now is one example (without comments) but that's hardly enough.
15
votes
2answers
2k views

Why are messages to akka actors untyped?

In akka, is there a way to restrict messages to actors to be of specific static type other than using the "Typed Actor" APIs that use an RPC style programming model? Can I use the message passing ...
15
votes
2answers
772 views

Scala Actors: Different behavior on JRE 1.5 and 1.6

My simulation is using actors and Scala 2.8-Snapshot. In Java JRE 1.5 it runs well - all 40 gears (actors) are working simultaneously. Using Java JRE 1.6 only 3 gears are working simultaneously. I ...
15
votes
2answers
994 views

scala actors vs threads and blocking IO

As I understand it, actors are basically lightweight threads implemented on top of threads, running many actors on a small pool of shared threads. Given that's the case, using blocking operations in ...
14
votes
1answer
3k views

Using scala actor framework as fork-join computation?

Is it possible, in theory, to use the Scala Actor Framework to do a kind of asynchronous divide-and-conquer computation similarly to JDK 7's Fork-Join framework? If so, how could I express an FJ ...
14
votes
2answers
1k views

What does a single apostrophe mean in Scala?

In this slide show on ScalaActors.pdf what does the single quote indicate when the message is sent to the pong actor? class Ping(count: int, pong: Pong) extends Actor { def act() { pong ! 'Ping ...
14
votes
1answer
3k views

How can Scala actors return a value in response to a message?

There are plenty of examples of actors replying with another message back to the sender, but whilst browsing the API docs I noticed the !! and !? operators which are part of the CanReply trait (which ...
14
votes
2answers
4k views

When to use Akka (Scala Actors) instead of “older” messaging solutions such as WebSphere MQ or Tibco Rendevous?

I already read the discussion about Scala Actors vs. JMS: Scala Actors vs JMS I will play with Akka in the next few weeks to get a better understanding about its power and good use cases. It looks ...
13
votes
4answers
4k views

Which Actor model library/framework for python and Erlang-like?

I am looking for a easy to learn Actor library or framework for Python 2.x I have tried Candygram and Twisted but I did not like none of them. I'd like something will be easy to extend to suppero ...
13
votes
2answers
477 views

Using Actors instead of `synchronized`

Every time I read about using synchronized in Scala the author will usually mention that Actors should be used instead (this for example). While I understand roughly how actors work I'd really like to ...
12
votes
4answers
5k views

Sleeping actors?

What's the best way to have an actor sleep? I have actors set up as agents which want to maintain different parts of a database (including getting data from external sources). For a number of reasons ...
12
votes
3answers
1k views

The strange case of multiple Futures in Scala

What's the the connection between those Future-related class and traits in Scala, and why are they sprinkled over different packages? I have found those: abstract class scala.actors.Future object ...
12
votes
2answers
815 views

Wait for an Actor to exit()

How do I wait for a Scala Actor to exit()? I set up two Actors in a unit test, and send a few messages to get them started. They send a few messages back and forth and eventually both call exit(). ...
12
votes
5answers
2k views

Unit testing scala actors

Anyone know of a good way to unit test Scala actors? In the general sense I have an actor that receives a message and will send out other messages in response. This is done on multiple threads, and an ...
12
votes
1answer
407 views

Is it good to put jdbc operations in actors?

I am building a traditional webapp that do database CRUD operations through JDBC. And I am wondering if it is good to put jdbc operations into actors, out of current request processing thread. I did ...
12
votes
2answers
1k views

Actor-based webservice - How to do it properly?

In the past few months, me and my colleagues have successfully built a server-side system for dispatching push notifications to iPhone devices. Basically, a user registers for these notifications via ...
11
votes
5answers
576 views

How is “become” implemented in languages that support the actor model?

The actor model is nicely described by Gul Agha on his technical report, "Actors: a model of concurrent computation in distributed systems". On page 49 he explains the "become" command: become ...
11
votes
5answers
1k views

Transferring typical 3-tier architecture to actors

This question bothers me for some time now (I hope I'm not the only one). I want to take typical 3-tier jee app and see how it possibly can look like implemented with actors. I would like to find out ...
11
votes
4answers
662 views

Actor-based distributed concurrency libraries for Ocaml and other languages

Question Can anyone recommend a library for Ocaml that offers an actor-based concurrency model for distributed computing? Note here the "actor-based" and "distributed" - I'd like the actor-based ...
11
votes
2answers
252 views

Scala Actors: if react never returns, why does it need to be in a loop{}, and why doesn't while(true) work?

Just getting started on Scala Actors. The Scala website says: Thread-blocking operations can be avoided by using react to wait for new messages (the event-based pendant of receive). However, ...
11
votes
2answers
1k views

Understanding the different dispatchers in Akka 2

I've trouble understanding the differences and recommended usage of the dispatchers in Akka 2. I think I understand how the BalancingDispatcher and the CallingThreadDispatcher behave but I have no ...
10
votes
1answer
1k views

How to start Akka Actors since 2.0?

I'm using Akka Actors and I'm trying to update my code to use the latest 2.0 milestone. The API changed somewhat, for example the creation of Actors now works via something called an ActorSystem. ...
10
votes
2answers
1k views

Parallel collections in Scala 2.9 and Actors

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 ...
10
votes
4answers
2k views

Message Passing Concurrency Library for C?

I've been looking around, but I can't seem to find a message-passing concurrency (Actor) library for C (not C++). Ideally the candidate would be based on something like libevent underneath allowing ...
10
votes
3answers
1k views

why use akka eventhandler for logging

In the following document, event handlers are described as taking the place of logging http://akka.io/docs/akka/1.2/general/event-handler.html There is an Event Handler which takes the place of a ...
10
votes
2answers
952 views

How is Node.js evented system different than the actor pattern of Akka?

I've worked with Node.js for a little while and consider myself pretty good with Java. But I just discovered Akka and was immediately interested in its actor pattern (from what I understand). Now, ...
10
votes
3answers
272 views

What is the smallest unit of work that is sensible to parallelize with actors?

While Scala actors are described as light-weight, Akka actors even more so, there is obviously some overhead to using them. So my question is, what is the smallest unit of work that is worth ...
10
votes
3answers
937 views

Proper way to access shared resource in Scala actors

In Java, one would synchronize methods or blocks that access a shared resource that is needed in a multi-threaded environment. I'm wondering how the "Scala Actors" way of doing this would work. ...
10
votes
1answer
608 views

What does the remote-actor framework do if trying to write to a client which is no longer there?

I have a server which is using the remote actors framework to communicate with multiple clients. As mentioned in this question, I am having trouble keeping track of when a client disappears. Hence my ...
9
votes
3answers
4k views

Scala pattern matching confusion with Option[Any]

I have the following Scala code. import scala.actors.Actor object Alice extends Actor { this.start def act{ loop{ react { case "Hello" => sender ! "Hi" case i:Int ...
9
votes
5answers
362 views

How would you explain actors to a non-programmer?

Well, the title's pretty much it: if I sat a non-techie/my mum/twelve-year old boy/cocker spaniel in front of you and asked you to explain actors to them, where would you start? I ask because my ...
9
votes
3answers
2k views

Akka remote actor server discovery

I would like to deploy a remote actors software made with akka on a cluster. The system is composed of several worker nodes and a single master node. The problem is that I cannot know in advance the ...

1 2 3 4 5 13