msgpack-python/erlang
Vincent de Phily 279121f87f erlang: Use a simple proplist instead of a dict.
A dict is overkill (code, cpu, memory) in most cases, and proplist<->dict conversion can easily be done by the libray user if desired.
        This is in line with other erlang libraries I've seen for various encoding schemes.
        The map encoder had a bug until I looked at it (see previous commit), so I guess it wasn't used much yet and a change is ok at this stage.
        The chosen representation for maps is a tuple containing the proplist as the only element.
2010-06-28 11:56:12 +02:00
..
.gitignore erlang: temporary documentation and .gitignore 2010-06-01 00:31:12 +09:00
msgpack.erl erlang: Use a simple proplist instead of a dict. 2010-06-28 11:56:12 +02:00
OMakefile erlang: tests improved and code refined. 2010-06-22 11:15:18 +09:00
OMakeroot added more tests, 2010-05-31 00:25:53 +09:00
README.md erlang: temporary documentation and .gitignore 2010-06-01 00:31:12 +09:00
testcase_generator.rb erlang: unpack_map's silly bug fixed. use dict:store/3.... 2010-06-25 00:22:53 +09:00

MessagePack for Erlang

Binary-based efficient object serialization library.

Status

still in development.

TODOs:

  • decide string specification.

Installation

Example

License