Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Storable

by TheoPetersen (Priest)
on Feb 22, 2001 at 21:11 UTC ( [id://60252]=modulereview: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Storable qw(freeze thaw);
    ...
    $buffer = freeze($obj);
    
  2. or download this
    $newInstance = thaw($buffer);
  3. or download this
    sub store {
        my $obj = shift;
        my $key = $obj->key;
    ...
        }
        return undef;
    }
    
  4. or download this
    store \%table, 'file';
    $hashref = retrieve('file');
    
  5. or download this
    store_fd \@array, \*STDOUT;
    nstore_fd \%table, \*STDOUT;
    $aryref = fd_retrieve(\*SOCKET);
    $hashref = fd_retrieve(\*SOCKET);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: modulereview [id://60252]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-18 20:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found