Skip to content

msgpack/msgpack-ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,364 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

ruby extconf.rb
make
make install
gem install msgpack
Author

frsyuki <frsyuki@users.sourceforge.jp>

Copyright

Copyright © 2008-2011 FURUHASHI Sadayuki

License

Apache License, Version 2.0

About

MessagePack implementation for Ruby / msgpack.org[Ruby]

Topics

Resources

License

Stars

788 stars

Watchers

20 watching

Forks

Packages

 
 
 

Contributors