About
This blog is for MessagePack Project, the extremely efficient object serialization library.-
Recent Posts
Archives
Categories
Meta
Monthly Archives: May 2010
MessagePack-RPC for Java 0.3.0 is released!
Today, I just released the MessagePack-RPC for Java version 0.3.0! MessagePack-RPC github repository The main change is, supporting the UDP protocol. The following is the example codes. UDPClient UDPServer Replacing “UDP” with “TCP” will work for the TCP Client/Server. Thanks … Continue reading →
Streaming Serialization/Deserialization with MessagePack
Streaming feature of MessagePack Streaming serialization/deserialization is one of the key features of MessagePack. It enables you to store and load multiple objects to/from a stream (like files or network connections). It is easy to use and fast. I’ll introduce … Continue reading →
MessagePack-RPC for C++
What’s MessagePack-RPC? MessagePack-RPC is a inter-process messaging system that is similar to Facebookâs thrift, Apache avro or Google’s Protocol Buffers. It uses MessagePack format for object serialization and passes serialized object across network connection. MessagePack is cross-language serialization format and … Continue reading →
Introduction to MessagePack-RPC
The official MessagePack blog is here! Today I want to introduce recent progress at the MessagePack project. It’s a extremely efficient object serialization library like JSON, but very fast and small. Why MessagePack? There’re some projects in the same area. … Continue reading →