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.33 by root, Sun Aug 25 18:13:26 2013 UTC vs.
Revision 1.35 by root, Mon Jun 29 23:51:28 2015 UTC

111"Storable::net_mstore" and "Storable::mretrieve", which should be fine for 111"Storable::net_mstore" and "Storable::mretrieve", which should be fine for
112most purposes. 112most purposes.
113 113
114=back 114=back
115 115
116=head1 SUPPORT FOR THE PERL MULTICORE SPECIFICATION
117
118This module supports the perl multicore specification
119(L<http://perlmulticore.schmorp.de/>) for all compression (> 2000 octets) and
120decompression (> 4000 octets) functions.
121
116=head1 SEE ALSO 122=head1 SEE ALSO
117 123
118Other Compress::* modules, especially Compress::LZV1 (an older, less 124Other Compress::* modules, especially Compress::LZV1 (an older, less
119speedy module that guarentees only 1 byte overhead worst case) and 125speedy module that guarentees only 1 byte overhead worst case) and
120Compress::Zlib. 126Compress::Zlib.
133package Compress::LZF; 139package Compress::LZF;
134 140
135require Exporter; 141require Exporter;
136require DynaLoader; 142require DynaLoader;
137 143
138$VERSION = '3.7'; 144$VERSION = 3.8;
139@ISA = qw/Exporter DynaLoader/; 145@ISA = qw/Exporter DynaLoader/;
140%EXPORT_TAGS = ( 146%EXPORT_TAGS = (
141 freeze => [qw(sfreeze sfreeze_best sfreeze_cr sfreeze_cr_best sfreeze_c sfreeze_c_best sthaw)], 147 freeze => [qw(sfreeze sfreeze_best sfreeze_cr sfreeze_cr_best sfreeze_c sfreeze_c_best sthaw)],
142 compress => [qw(compress compress_best decompress)], 148 compress => [qw(compress compress_best decompress)],
143); 149);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines