Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardRubymethod_missing dispatch internalsSingle-choice MCQ

Ruby's method dispatch consults a global serial-number-based inline method cache. Which single action below forces that cache to be invalidated for affected call sites, and why is this relevant to `method_missing`-heavy code?

class Proxy def method_missing(name, *args) "forwarded #{name}" end end