msgpack-python/ruby
2010-09-16 21:38:17 +09:00
..
test More tests; some fails now :( 2010-09-16 21:38:17 +09:00
AUTHORS
bench.rb
ChangeLog ruby: 0.4.3 2010-06-29 15:39:47 +09:00
compat.h fixes compatibility with Rubinius 2010-08-31 09:29:01 +09:00
extconf.rb fixes compatibility with Rubinius 2010-08-31 09:29:01 +09:00
makegem.sh ruby: 0.4.3 2010-06-29 15:39:47 +09:00
msgpack.gemspec
pack.c fixes compatibility with Rubinius 2010-08-31 09:29:01 +09:00
pack.h
rbinit.c ruby: fixes compatibility with ruby-1.8.5 2010-08-31 07:00:19 +09:00
README
unpack.c ruby: fixes compatibility with ruby-1.8.5 2010-08-31 07:00:19 +09:00
unpack.h
version.rb

= MessagePack

== Description

MessagePack is a binary-based efficient object serialization library.
It enables to exchange structured objects between many languages like JSON.
But unlike JSON, it is very fast and small.

Simple usage is as follows:

  require 'msgpack'
  msg = [1,2,3].to_msgpack  #=> "\x93\x01\x02\x03"
  MessagePack.unpack(msg)   #=> [1,2,3]

Use MessagePack::Unpacker for streaming deserialization.


== Installation

=== Archive Installation

  ruby extconf.rb
  make
  make install

=== Gem Installation

  gem install msgpack


== Copyright

Author::    frsyuki <frsyuki@users.sourceforge.jp>
Copyright:: Copyright (c) 2008-2010 FURUHASHI Sadayuki
License::   Apache License, Version 2.0