ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Compress-LZF/LZF.pm
(Generate patch)

Comparing Compress-LZF/LZF.pm (file contents):
Revision 1.9 by root, Sat May 18 21:48:39 2002 UTC vs.
Revision 1.10 by root, Thu Sep 5 04:44:55 2002 UTC

81=head2 $original_data = sthaw $serialized 81=head2 $original_data = sthaw $serialized
82 82
83Recreate the original object from it's serialized representation. This 83Recreate the original object from it's serialized representation. This
84function automatically detects all the different sfreeze formats. 84function automatically detects all the different sfreeze formats.
85 85
86=head2 Compress::LZF::set_serializer $package, $freeze, $store
87
88Set the serialize module and functions to use. The default is "Storable",
89"Storable::mstore" and "Storable::mretrieve", which should be fine for
90most purposes.
91
86=head1 SEE ALSO 92=head1 SEE ALSO
87 93
88Other Compress::* modules, especially Compress::LZV1 (an older, less 94Other Compress::* modules, especially Compress::LZV1 (an older, less
89speedy module that guarentees only 1 byte overhead worst case) and 95speedy module that guarentees only 1 byte overhead worst case) and
90Compress::Zlib. 96Compress::Zlib.
103package Compress::LZF; 109package Compress::LZF;
104 110
105require Exporter; 111require Exporter;
106require DynaLoader; 112require DynaLoader;
107 113
108$VERSION = 0.1043; 114$VERSION = 0.1044;
109@ISA = qw/Exporter DynaLoader/; 115@ISA = qw/Exporter DynaLoader/;
110%EXPORT_TAGS = ( 116%EXPORT_TAGS = (
111 freeze => [qw(sfreeze sfreeze_cr sfreeze_c sthaw)], 117 freeze => [qw(sfreeze sfreeze_cr sfreeze_c sthaw)],
112 compress => [qw(compress decompress)], 118 compress => [qw(compress decompress)],
113); 119);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines