mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
upgraded docs
This commit is contained in:
parent
8025895168
commit
e781831032
2 changed files with 25 additions and 6 deletions
16
perl/README
16
perl/README
|
|
@ -1,12 +1,16 @@
|
|||
NAME
|
||||
Data::MessagePack - messagepack
|
||||
Data::MessagePack - MessagePack serialising/deserialising
|
||||
|
||||
SYNOPSIS
|
||||
my $packed = Data::MessagePack->pack($dat);
|
||||
my $unpacked = Data::MessagePack->unpack($dat);
|
||||
|
||||
DESCRIPTION
|
||||
Data::MessagePack is a binary packer for perl.
|
||||
This module converts Perl data structures to MessagePack and vice versa.
|
||||
|
||||
MessagePack is a binary-based efficient object serialization format. It
|
||||
enables to exchange structured objects between many languages like JSON.
|
||||
But unlike JSON, it is very fast and small.
|
||||
|
||||
METHODS
|
||||
my $packed = Data::MessagePack->pack($data);
|
||||
|
|
@ -22,13 +26,19 @@ Configuration Variables
|
|||
AUTHORS
|
||||
Tokuhiro Matsuno
|
||||
|
||||
Makamaka Hannyaharamitu
|
||||
|
||||
THANKS TO
|
||||
Jun Kuriyama
|
||||
|
||||
Dan Kogai
|
||||
|
||||
FURUHASHI Sadayuki
|
||||
|
||||
LICENSE
|
||||
This library is free software; you can redistribute it and/or modify it
|
||||
under the same terms as Perl itself.
|
||||
|
||||
SEE ALSO
|
||||
<http://msgpack.sourceforge.jp/>
|
||||
<http://msgpack.org/>
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ __END__
|
|||
|
||||
=head1 NAME
|
||||
|
||||
Data::MessagePack - messagepack
|
||||
Data::MessagePack - MessagePack serialising/deserialising
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
|
|
@ -39,7 +39,10 @@ Data::MessagePack - messagepack
|
|||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Data::MessagePack is a binary packer for perl.
|
||||
This module converts Perl data structures to MessagePack and vice versa.
|
||||
|
||||
MessagePack is a binary-based efficient object serialization format.
|
||||
It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small.
|
||||
|
||||
=head1 METHODS
|
||||
|
||||
|
|
@ -69,10 +72,16 @@ Pack the string as int when the value looks like int(EXPERIMENTAL).
|
|||
|
||||
Tokuhiro Matsuno
|
||||
|
||||
Makamaka Hannyaharamitu
|
||||
|
||||
=head1 THANKS TO
|
||||
|
||||
Jun Kuriyama
|
||||
|
||||
Dan Kogai
|
||||
|
||||
FURUHASHI Sadayuki
|
||||
|
||||
=head1 LICENSE
|
||||
|
||||
This library is free software; you can redistribute it and/or modify
|
||||
|
|
@ -81,5 +90,5 @@ it under the same terms as Perl itself.
|
|||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<http://msgpack.sourceforge.jp/>
|
||||
L<http://msgpack.org/>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue