digitalmars.D - Creating an Actor Model library
- Kamyar Inanloo (3/3) Feb 24 I am starting to write a robust Actor Model library (similar to
- sophia (11/14) Feb 27 I've been wanting to do the same but with MPI
I am starting to write a robust Actor Model library (similar to Actix in Rust) for D language using std.concurrency. I need your support and contribution!
Feb 24
On Monday, 24 February 2025 at 22:38:45 UTC, Kamyar Inanloo wrote:I am starting to write a robust Actor Model library (similar to Actix in Rust) for D language using std.concurrency. I need your support and contribution!I've been wanting to do the same but with MPI std.concurrency is good enough for local message passing (as actix::prelude does) so all you need is to extend it by writing types on top to conform to a formal system for inferring about actor systems like operational semantics? I personally believe a more fulfilling option for a (mostly) imperative language such as D would be to implement message transport or ipc i'm also not very good at english or at writing in general so i apologize if the point does not get across or if i may be wrong somewhere T_T
Feb 27