Clojure lots of threads
- by Timothy Baldridge
I just got done watching Rick Hickey's "Clojure Concurrency" talk, and I have a few questions about threads.
Let's say I have a situation with lots of Agents, let's say 10,000 of them running one machine. I'd rather not have 10,000 CPU threads running at once, but I don't want threads to be blocked by the actions of other threads.
In this…