core-async 2024-04-29

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.

Alex Miller (Clojure team) 2024-04-29T12:11:31.413929Z

You’re using it correctly

Thank you