MessagePack serializer implementation for Python msgpack.org[Python] https://msgpack.org/
Find a file
2010-04-07 19:54:14 +09:00
c c: fixes msgpack_zbuffer_write: error checking 2010-04-04 22:11:16 +09:00
cpp cpp: fixes argument type of pack_int* methods 2010-04-07 19:54:14 +09:00
example fix Makefile.am 2009-08-07 11:28:23 +09:00
java fix: org.msgpack.impl.UnpackerImpl.java CS_MAP_16 deserialize bug(line.388) 2010-04-01 23:15:36 +09:00
msgpack strict-aliasing rule 2 2010-02-27 02:37:01 +09:00
perl Perl: change for release Data-MessagePack-0.09 2010-01-04 12:10:46 +09:00
php import MessagePack for PHP 2010-04-05 00:10:28 +09:00
python should raise TypeError on find unsupported value 2010-03-31 17:29:07 +09:00
ruby ruby: version 0.3.7 2010-04-06 17:59:34 +09:00
AUTHORS lang/c/msgpack: added license notifications 2009-02-15 09:09:57 +00:00
bootstrap cpp: preprocess eruby templates on ./bootstrap; released package doesn't require erb 2009-08-19 17:47:22 +09:00
ChangeLog lang/c/msgpack: autotoolized 2009-02-15 09:09:56 +00:00
configure.in fixes Visual C++ compatibility 2010-03-19 13:34:53 +09:00
COPYING strict-aliasing rule 2 2010-02-27 02:37:01 +09:00
LICENSE add NOTICE file 2009-02-26 18:37:13 +09:00
Makefile.am fixes Visual C++ compatibility 2010-03-19 13:34:53 +09:00
msgpack_vc8.postbuild.bat fixes Visual C++ compatibility 2010-03-19 13:34:53 +09:00
msgpack_vc8.sln fixes Visual C++ compatibility 2010-03-19 13:34:53 +09:00
msgpack_vc8.vcproj fixes Visual C++ compatibility 2010-03-19 13:34:53 +09:00
NEWS lang/c/msgpack: autotoolized 2009-02-15 09:09:56 +00:00
NOTICE add NOTICE file 2009-02-26 18:37:13 +09:00
README ruby: makegem.sh 2010-02-06 21:31:16 +09:00

MessagePack
-----------
Binary-based efficient data interchange format.


*Requirements

  MessagePack is only tested on Linux and Mac OS X, but it may run on other
  UNIX-like platforms.

  gcc >= 4.1 is required to build.


*Installation

  Simply run ./configure && make && make install to install C and C++ binding.

    $ ./configure
    $ make
    $ sudo make install

  To install Ruby binding, run ./makegem.sh script on ruby/ directory and install
  generated gem package.

    $ cd ruby
    $ ./makegem.sh
    $ gem install msgpack-*.gem


*Usage

  C++:
    include msgpack.hpp header and link libmsgpack library.
    see example/simple.cc for example.

      g++ simple.cc -lmsgpack
      g++ stream.cc -lmsgpack -lpthread


  C:
    include msgpack.h   header and link libmsgpackc library.
    see example/simple.c  for example.

      gcc simple.c  -lmsgpackc


  Ruby:
    require msgpack library.
    see example/simple.rb for example.

	  ruby -rubygems simple.rb


  API Document is available at http://msgpack.sourceforge.jp/.


Copyright (C) 2008-2010 FURUHASHI Sadayuki

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.