Help for this page

Select Code to Download


  1. or download this
        $callback->($self);
    
  2. or download this
        $self->{CACHE}
    
  3. or download this
        sub add_to_cache {
            my $self = shift;
    ...
            my @files = shift;
            push @{ $self->{CACHE}->{$alias} }, @files;
        }
    
  4. or download this
        $cache->add_to_cache(ALIAS, @files_in_dir);