Implementing distributed pooling in Elixir
In Elixir, once you have clustering set up, it's ridiculously easy to run some code on another node in your cluster: Node.spawn(:"[email protected]", fn -> # This runs on a different node send(self(), node()) end) receive do response…