A
agent_008_nl
Guest
Especially this part of that answer ( programmers.stackexchange.com/.../how-is-the-actor-model-used) I found interesting: "Helps focus on Task Based events rather than CRUD events. CRUD is simple but it's just like interacting with a filing cabinet. If we can provide more value than in the software we produce, why are we doing it? Tying multiple actions to a single "Update" command in a task based system is more useful than just saving to the DB. This also gets into stuff like CQRS." with this link about Task based UI: web.archive.org/.../ I am writing a small bpms in elixir at the moment. It works with websockets (a persistent connection via the web of a client and a backend). Many of them (in principle millions within elixir) can exist simultaneously for different users / tasks. That means many *statefull* connections, per connection I will use more than one actor. All these actors can communicate with other.
Continue reading...
Continue reading...