Help for this page

Select Code to Download


  1. or download this
    sub fetch {
        return _cached_fetch($_[1]) if _cached( $_[1] );
        return _via_normal_retrieval( $_[1] );
    }
    
  2. or download this
    sub log_cache {
        local $, = " ";
        print SOMEWHERE "MyObj cache called", caller(1), "w/",$_[1],$/;
    }