Fork me on GitHub
#cider
<
2022-02-03
>
Jo Øivind Gjernes08:02:47

Is there any way of knowing what is currently executing in cider? (i.e. when the progress bar is “busy”?)

vemv08:02:49

plugging in YourKit or similar (I always do so beforehand so that when I connect Yourkit, it has already a history of metrics)

bozhidar07:02:06

If we're not looking for much details - it's always the last expression that go evaluated, as evaluation is serialized on the nREPL end. You can't evaluate multiple expression simultaneously in the same nREPL session.

bozhidar07:02:25

(but you can spin a separate session for each eval op if you want to achieve something like this)