tonsky / Clojure-Sublimed

Clojure support for Sublime Text 4
MIT License
359 stars 22 forks source link

Unbounded number of threads in nREPL server #50

Closed jaihindhreddy closed 2 years ago

jaihindhreddy commented 2 years ago

We clone the session on each eval, but never close the created sessions. This means that the total number of sessions in the nREPL server continues to rise. This is unnecessary inefficiency.

Related to #20.