I've been looking into Elixir and Akka recently, and that got me thinking: what's the equivalent in Clojure?
- I found a couple of "message throughput comparison" posts about agents vs actors, but they were from 8 years ago
- One answer used to be
agents
... but that's not quite the same thing (agents don't seem to have their own logic, they're "acted upon" by external code) - Another somewhat recent answer was
Pulsar
fibres (closer, but ... is that still maintained?)
(I am aware that it's possible that I'm "asking the wrong question here", hopefully this isn't too open ended)