MessagePack (de)serializer implementation for Erlang / msgpack.org[Erlang]
Go to file
2013-02-18 04:46:53 +09:00
c_src add build script 2013-02-18 04:34:36 +09:00
src move benchmark tests 2013-02-18 04:46:10 +09:00
test move benchmark tests 2013-02-18 04:46:10 +09:00
.gitignore add gitignore line 2012-07-18 01:02:04 +09:00
.travis.yml drop R14B0x support 2013-02-02 21:12:55 +09:00
LICENSE-2.0.txt add license terms and a bit cosme 2011-05-02 17:29:00 +09:00
Makefile PropEr introduced thanks to @voluntas 2012-07-18 01:00:47 +09:00
README.rst add result of micro benchmarks 2013-02-18 04:40:54 +09:00
rebar update rebar 2013-02-02 21:00:35 +09:00
rebar.config add build script 2013-02-18 04:34:36 +09:00

##################
MessagePack Erlang
##################

.. image:: https://secure.travis-ci.org/msgpack/msgpack-erlang.png

prequisites for runtime
-----------------------

Erlang runtime system ( http://erlang.org/ ), >= R15B -- otherwise rebar won't work.

rebar.config
------------

::

   {deps, [
     {msgpack, ".*",
       {git, "git://github.com/msgpack/msgpack-erlang.git", "master"}}
   ]}.

Simple deserialization

::

   Ham = msgpack:pack(Spam),
   {ok, Spam} = msgpack:unpack(Ham).

Stream deserialization

::

   {Term0, Rest0} = msgpack:unpack_stream(Binary),
   {Term1, Rest1} = msgpack:unpack_stream(Rest0),
   ...

experimental feature: NIF (de)serializer
----------------------------------------

since 0.1.1 - only tested in MacOS

::

  src/msgpack.erl:343:<0.131.0>:   serialize: 0.405 s
  src/msgpack.erl:344:<0.131.0>: deserialize: 0.470 s
  src/msgpack.erl:345:<0.131.0>: for 1884 KB test data(msgpack).
  src/msgpack.erl:349:<0.131.0>:   serialize: 0.019 s
  src/msgpack.erl:350:<0.131.0>: deserialize: 0.036 s
  src/msgpack.erl:351:<0.131.0>: for 1884 KB test data.(msgpack_nif).
  src/msgpack.erl:355:<0.131.0>:   serialize: 0.043 s
  src/msgpack.erl:356:<0.131.0>: deserialize: 0.027 s
  src/msgpack.erl:357:<0.131.0>: for 3828 KB test data.(t2b/b2t).


License
-------

Apache License 2.0