|
|
|
|
|
by microtonal
2321 days ago
|
|
In the Actor model, all function calls are async and have no return value, between the Actors. Each Actor is single threaded (OOP) program. It provides a nice approach to deal with parallel programming. I guess you mean 'concurrent programming', right? I haven't seen actors used a lot for parallelism. |
|
So a pool of worker actors can absolutely work in parallel. In fact now I'm curious if Actix supports that