(no title)
mikehostetler | 1 year ago
Adding Docker adds even more weight.
You could run multiple agents in a single Node.js process, but you'll eventually face event-loop conflicts.
With Elixir and BEAM, you already have the tools to run agents as a lightweight Erlang process. You also have built-in PubSub for inter-agent communication (via a package).
This provides the ability for safely running 1000's of agents in a single BEAM Node. This is much more robust and efficient then Node.js and TypeScript.
No comments yet.