summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortokuhirom <tokuhirom@gmail.com>2010-05-05 15:50:07 +0900
committertokuhirom <tokuhirom@gmail.com>2010-05-05 15:50:07 +0900
commit2c2bf60d0c86fdcccc68077904ef115017e03194 (patch)
tree85e042894f774a82143793d9b6a5ff983ce3e607
parent62b82448d5e42ec3cae4010fee5c3d36a6e9447c (diff)
downloadmsgpack-python-2c2bf60d0c86fdcccc68077904ef115017e03194.tar.gz
Perl: added README file.
-rw-r--r--perl/README34
1 files changed, 34 insertions, 0 deletions
diff --git a/perl/README b/perl/README
new file mode 100644
index 0000000..31aae99
--- /dev/null
+++ b/perl/README
@@ -0,0 +1,34 @@
+NAME
+ Data::MessagePack - messagepack
+
+SYNOPSIS
+ my $packed = Data::MessagePack->pack($dat);
+ my $unpacked = Data::MessagePack->unpack($dat);
+
+DESCRIPTION
+ Data::MessagePack is a binary packer for perl.
+
+METHODS
+ my $packed = Data::MessagePack->pack($data);
+ pack the $data to messagepack format string.
+
+ my $unpacked = Data::MessagePack->unpack($msgpackstr);
+ unpack the $msgpackstr to messagepack format string.
+
+Configuration Variables
+ $Data::MessagePack::PreferInteger
+ Pack the string as int when the value looks like int(EXPERIMENTAL).
+
+AUTHORS
+ Tokuhiro Matsuno
+
+THANKS TO
+ Jun Kuriyama
+
+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/>
+