I'd recommend giving Zulip a shot for longer discussions, and the clojure community there has the benefit of mirroring messages on this slack
I've got no doubt that there are other good options, but I don't want to end up in 20 chats and one of the primary reasons I like Discord, is that I don't use it only for CIDER.
That's pretty much the only reason I use Slack as well - it's the chat we use at work. Otherwise it's unlikely I would have been running Slack just for the Clojurians community. My message was geared mostly towards Discord users and people who dislike Slack.
My cpu shoots to 103% whenever I execute clojure code in the repl that produces an error (the java nrepl process, that is). It's at 3% before any error occurs. Any idea on how to troubleshoot this? What directories does nrepl need access to?
@nick.romer What's your CIDER version?
nREPL doesn't really need access to anything, so I'm assuming that's not a permission issue, but we need more data to figure out what's going on.
I narrowed it down to datahike.api that is a require in my project. It has a lot of dependencies.
I have one of the latest cider versions. I use spacemacs dev branch. How can I check the cider version?
cider-nrepl-0.25.6
refactor is disabled and savehist is tiny.
Hmm, maybe you can attach some Java profiler to the project and see what's causing the CPU spike?
Hi Bozhidar, I was unable to find a profiler for my system (termux on Android = arm32 terminal). I uninstalled my jdk (adopt open 11) and replaced it with v14. The problem has gone away.
I've never done profiling. Can you suggest a profiler?
There's one bundled with the JDK - VisualVM.
Ok. thanks!