Help for this page

Select Code to Download


  1. or download this
    use Storable;
    store \%table, 'file';
    $hashref = retrieve('file');
    
  2. or download this
    use Storable qw(nstore store_fd nstore_fd freeze thaw dclone);
    
    ...
    nstore_fd \%table, \*STDOUT;
    $aryref = fd_retrieve(\*SOCKET);
    $hashref = fd_retrieve(\*SOCKET);