How to read nodejs internal profiler tick-processor output

Indeed, you are right in your assumption about time actually spent compiling the code: it takes milliseconds (which could be seen with –trace-opt flag). Now talking about that LazyCompile. Here is a quotation from Vyacheslav Egorov’s (former v8 dev) blog: If you are using V8’s tick processors keep in mind that LazyCompile: prefix does not … Read more

Scala profiler?

Given that Scala runs on the Java Virtual Machine (JVM), you can use the JVM tools JConsole and VisualVM to profile the application. Alternatively any Java profiler should work (e.g. YourKit, as you’ve already mentioned) VisualVM has been bundled with the JDK since 1.6.0_10 and it is based on the NetBeans profiler. You can capture … Read more