Help for this page

Select Code to Download


  1. or download this
    $o->method();  # Normal (first call)
    $o->method();  # Faster due to cache
    *foo = sub {};
    $o->method();  # Normal (cache cleared)
    $o->method();  # Faster due to cache