• Yorick Peterse's avatar
    Use custom code for instrumenting method calls · 1b077d2d
    Yorick Peterse authored
    The use of ActiveSupport would slow down instrumented method calls by
    about 180x due to:
    
    1. ActiveSupport itself not being the fastest thing on the planet
    2. caller_locations() having quite some overhead
    
    The use of caller_locations() has been removed because it's not _that_
    useful since we already know the full namespace of receivers and the
    names of the called methods.
    
    The use of ActiveSupport has been replaced with some custom code that's
    generated using eval() (which can be quite a bit faster than using
    define_method).
    
    This new setup results in instrumented methods only being about 35-40x
    slower (compared to non instrumented methods).
    1b077d2d
instrumentation_spec.rb 2.71 KB