The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Tie::MLDBM::Serialise::Storable - Tie::MLDBM Serialisation Component Module

SYNOPSIS

 use Tie::MLDBM;

 tie %hash, 'Tie::MLDBM', {
     'Serialise' =>  'Storable'
 } ... or die $!;

DESCRIPTION

This module forms a serialisation component of the Tie::MLDBM framework, using the Storable module to fulfill serialisation requirements. This module uses the nfreeze() and thaw() methods of Storable to serialise and deserialise data in network order respectively.

Caveats of usage of this module for serialisation are the same as that for the Storable module itself and are documented on Storable.

AUTHOR

Rob Casey <robau@cpan.org>

COPYRIGHT

Copyright 2002 Rob Casey, robau@cpan.org

SEE ALSO

Tie::MLDBM, Storable