|
|
|
|
|
by alfanerd
3018 days ago
|
|
In my 30+ years experience of concurrency, the shared-nothing message model makes it relative easy to reason about concurrency (since every actor is single threaded). I have worked with Java, C# and Python, and for each I have developed a concurrent object framework, making it quite easy to work with multible channels of incoming events, for example for process control systems with barcode-scanners, scales, I/O-busses etc. connected to the system I think ponylang does a pretty good implementation of the Actor model. Feel free to have a look at the Python impl. of the framework (www.github.com/pylots/pyworks) |
|