MessagePack serializer implementation for Python msgpack.org[Python] https://msgpack.org/
Find a file
2009-07-01 18:40:14 +09:00
c perl package 2009-06-24 13:53:12 +09:00
cpp perl package 2009-06-24 13:53:12 +09:00
example c: msgpack_sbuffer; cpp: msgpack::sbuffer 2009-03-01 00:59:15 +09:00
msgpack fix serialization bug on BigEndian environment 3 2009-03-04 01:15:22 +09:00
perl Checking in changes prior to tagging of version 0.01. Changelog diff is: 2009-07-01 18:40:14 +09:00
ruby cpp: fix map<K, V> converter 2009-06-03 22:01:27 +09:00
AUTHORS lang/c/msgpack: added license notifications 2009-02-15 09:09:57 +00:00
bootstrap AC_CONFIG_AUX_DIR(ac) 2009-02-22 15:47:06 +09:00
ChangeLog lang/c/msgpack: autotoolized 2009-02-15 09:09:56 +00:00
configure.in add msgpack_vrefbuffer, msgpack::vrefbuffer 2009-06-07 14:59:50 +09:00
COPYING c and c++: rewritten and integrated 2009-02-22 15:14:21 +09:00
LICENSE add NOTICE file 2009-02-26 18:37:13 +09:00
Makefile.am perl package 2009-06-24 13:53:12 +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 add msgpack_vrefbuffer, msgpack::vrefbuffer 2009-06-07 14:59:50 +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.

  Following programs are required to build:
    - gcc >= 4.1 with C++ support
    - ruby >= 1.8   (ruby is used as a preprocessor)


*Installation

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

    $ ./configure
    $ make
    $ sudo make install

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

    $ cd ruby
    $ ./gengem.sh
    $ gem install gem/pkg/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-2009 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.