
MessagePack: It's like JSON. but fast and small.
MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it's faster and smaller. Small integers are encoded into a single byte, and …
Module: MessagePack::RPC
MessagePack- RPC is an inter-process messaging library that uses MessagePack for object serialization. The goal of the project is providing fast and scalable messaging system for server, …
Module: MessagePack
Serializes the object into raw bytes. The encoding of the string is ASCII-8BIT on Ruby 1.9. This method is same as object.to_msgpack (out = ’’). out is an object that implements *<<* method like String or IO.
msgpack
Deserializes MessagePack object to members using Value. Params: ... Throws: MessagePackException if value is not an Array type. void fromMsgpack (ref Unpacker unpacker); Deserializes MessagePack …
MessagePack - Msgpack-cli
MessagePack for CLI Interoperable serialization format for any Common Language Infrastructure environments. This library can be used in any .NET languages, of course: C# Visual Basic (.NET) …
Class: MessagePack::Unpacker
Creates instance of MessagePack::Unpacker. You can specify a stream for input stream. It is required to implement sysread or readpartial method. With the input stream, buffers will be feeded into the …
MessagePack (MessagePack for Java 0.6.1 API)
public class MessagePack extends Object This is basic class to use MessagePack for Java. It creates serializers and deserializers for objects of classes. See Quick Start for Java on MessagePack wiki.
Class: MessagePack::Factory — Documentation by YARD 0.9.37
Feb 6, 2025 · MessagePack::Factory is a class to generate Packer and Unpacker which has same set of ext types.
Module: MessagePack — Documentation by YARD 0.9.37
An instance of Factory class. DefaultFactory is also used by global pack/unpack methods such as MessagePack.dump/load, Hash#to_msgpack, and other to_msgpack methods.
MsgPack Namespace - MessagePack
MsgPack namespace defines primitives of MessagePack for CLI. It includes which is lightweight object representing MessagePack type system, which is packing primitive, and which is unpacking primitive.