Scala Profiler?

There is a question from ~ 2 years ago about the profiler for Scala, but after trying to use Java VisualVM for a while, I find its compatibility with Scala v2.9.0 bytecode is missing (especially the profiling processor). There is a huge stream of error messages related to anonymous classes, so instead of trying to deal with it, I was wondering if any other profilers are ready for Scala 2.9?

+6
source share
1 answer

There is a huge stream of error messages related to anonymous classes, so instead of trying to deal with it

AFAIK, Scala uses exceptions to control flow: see this . Moreover, in this thread, Yourkit recommended for profiling Scala. (Personally, I used it only with Java code, and Yourkit was pretty nice).

UPDATE

Now there is also HeapAudit , developed with respect to scala.

+5
source

Source: https://habr.com/ru/post/896187/


All Articles