Help for this page

Select Code to Download


  1. or download this
    package main;
    
    # some stuff here
    ...
    sub mangle_cache {
        # do this and that
    }
    
  2. or download this
    package main;
    
    # stuff here
    my $sub_ref = sub { print "Messing with the cache.\n" };
    *RadCache::mangle_cache = $sub_ref;    # syntax may be a little off