Actor Model

Actor model is a programming paradigm which models any software system as composed of actors which communicate with each other by sending messages (no reply hence non-blocking). Message is the only means of communication with external world for these actors. Messages are queued at each actor and are processed in sequence.  This avoids the need for synchronization in object oriented world and avoids the need of costly locks and in turn deadlocks.  In this manner Actor Model is supposed to meet the demands of high performance parallel processing systems of today.

Comments

Popular posts from this blog

SQL

Analytics

HIVE