I would like to know your thoughts about the usefulness of a cross-language actor middleware, like something that enables us to write a system in erlang that could interact with actors in scala, for example, but actually using the actor model. For now I'm not concerned with questions like actor creation across languages and so on, but if it's useful to have a middleware like this.

Thanks in advance!

link|improve this question
feedback

closed as not constructive by Wooble, jcollado, Peer Stritzinger, Book Of Zeus, Joe Jan 24 at 1:51

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

It is useful if you have a need for it, otherwise it just adds complexity that doesn't have a purpose.

The only major reasons I can see for having such a middleware would be:

  1. Integration with existing cross-language systems
  2. Drastic performance or productivity gains realized by using different languages

I am sure there are other reasons, but I would guess that they are few.

As an alternative, I would suggest you adopt a message-passing architecture and have the message queues abstracted away from the actual applications. With this, the various actors can interact with only the queues they need to and can use whatever clients exist for their language and the message queue provider.

link|improve this answer
feedback

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