2009-04-15 12:55:41 +09:00
|
|
|
package Data::MessagePack;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use XSLoader;
|
2009-07-01 17:45:18 +09:00
|
|
|
use 5.008001;
|
2009-04-15 12:55:41 +09:00
|
|
|
|
2009-07-02 17:43:58 +09:00
|
|
|
our $VERSION = '0.03';
|
2009-04-15 12:55:41 +09:00
|
|
|
|
|
|
|
XSLoader::load(__PACKAGE__, $VERSION);
|
|
|
|
|
|
|
|
1;
|
|
|
|
__END__
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
Data::MessagePack - messagepack
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
my $packed = Data::MessagePack->pack($dat);
|
|
|
|
my $unpacked = Data::MessagePack->unpack($dat);
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
Data::MessagePack is a binary packer for perl.
|
|
|
|
|
2009-07-02 14:25:48 +09:00
|
|
|
=head1 Configuration Variables
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2009-07-02 14:29:49 +09:00
|
|
|
=item $Data::MessagePack::PreferInteger
|
2009-07-02 14:25:48 +09:00
|
|
|
|
|
|
|
Pack the string as int when the value looks like int(EXPERIMENTAL).
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
2009-04-15 12:55:41 +09:00
|
|
|
=head1 AUTHORS
|
|
|
|
|
|
|
|
Tokuhiro Matsuno
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
|
|
|
L<http://msgpack.sourceforge.jp/>
|
|
|
|
|