Help for this page

Select Code to Download


  1. or download this
    if ( exists $self->foo_cache()->{$key} ) { # cache hit
        $value = $self->foo_cache()->{$key};
    ...
        $value = calculate_something_worth_caching();
        $self->foo_cache()->{$key} = $value; # store in cache
    }