Design patterns for Agent / Actor based concurrent design.

Posted by nso1 on Stack Overflow See other posts from Stack Overflow or by nso1
Published on 2009-02-20T08:31:18Z Indexed on 2010/05/10 23:44 UTC
Read the original article Hit count: 246

Filed under:
|
|
|
|

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 documentation that I have read focus around the intro level. What I am looking for is more advanced documentation along the gang of four but instead shared nothing based.

Why ? It helps to grok the change in design thinking. Simple examples are easy, but in a real world java application (single threaded) you can have object graphs with 1000's of members with complex relationships. But with agent based concurrency development it introduces a whole new set of ideas to comprehend when designing large systems. ie. Agent granularity - how much state should one agent manage - implications on performance etc or are their good patterns for mapping shared state object graphs to agent based system. tips on mapping domain models to design. Discussions not on the technology but more on how to BEST use the technology in design (real world "complex" examples would be great).

© Stack Overflow or respective owner

Related posts about agent

Related posts about scala