Help for this page

Select Code to Download


  1. or download this
    print join "\n", split(/\0/, $dbm{$key}), '';
    
  2. or download this
    print map "$_\n", split /\0/, @dbm{sort keys %dbm};
    
  3. or download this
    my $cache = freeze [ map "$_\n", split /\0/, @dbm{sort keys %dbm} ];