mchr3k / org.intrace

Java tracing agent and live trace client
http://mchr3k.github.com/org.intrace/
73 stars 18 forks source link

interface support now turned off by default for stability reasons #42

Open eostermueller opened 8 years ago

eostermueller commented 8 years ago

The code for interface support did extra processing on every class in the classloader. For a large project like an application server with 10-50k classes, time-to-instrument often took several minutes -- unacceptable.

This pull request turns off interface support by default. To turn it back on, add the following parameter: [instrument-implementors=true

--Erik

eostermueller commented 8 years ago

I forgot to mention that these issues are documented in #37...thus the name of my branch iss37.