I've been using clojure.core.async/thread for long-lived threads. Is this an anti-pattern? Am I at risk of starving a thread-pool if I do this?
I went through the source-code and it looks like it will not, but hoping for some confirmation.
You’re using it correctly
Thank you