Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Microsoft's Bond and Google's Protocol Buffers [closed]

Recently (January 2015) Microsoft open-sourced Bond, their framework for working with schematized data. In many aspects it is similar to Google's Protocol Buffers.

What are the biggest differences between the two? What are pros and cons, that is, in which situations I would like to use one, but not the other? Of course, I'm not talking about obvious things like consistency with other projects or already existing APIs, but rather the features of both libraries. To give an example, Bond has bonded<T> which, if I remember correctly, doesn't have a counterpart in Protocol Buffers.

like image 318
dtldarek Avatar asked Jan 10 '15 17:01

dtldarek


People also ask

Does Google use Protobuf?

Protocol buffers, or Protobuf, is a binary format created by Google to serialize data between different services. Google made this protocol open source and now it provides support, out of the box, to the most common languages, like JavaScript, Java, C#, Ruby and others.

What is the difference between Protobuf and JSON?

Protobuf is a binary data-interchange format developed by Google, whereas JSON is the human-readable data-interchange format. JSON is derived from JavaScript but as the name suggests, it is not limited to JavaScript only. It was designed in such a way that it can be used in multiple languages.

How do Google protocol buffers work?

Protocol buffers provide a language-neutral, platform-neutral, extensible mechanism for serializing structured data in a forward-compatible and backward-compatible way. It's like JSON, except it's smaller and faster, and it generates native language bindings.

What is Microsoft Bond?

Microsoft Bond is a modern data serialization framework. It provides powerful DSL and flexible protocols, code generators for C++ and C#, efficient protocol implementations for Windows, Linux, and Mac OS X.


1 Answers

In general, Bond has better type system and supports multiple protocols.

In particular, pros are:

  • Bond supports generics
  • Bond has different types to represent collections: vector<T>, map<T>, list<T>
  • Bond supports type-safe lazy deserialization (bonded<T>)
  • Bond supports multiple formats (fast binary, compact binary, XML, JSON) + marshaling and transcoding

Cons:

  • Bond doesn't support different types for fixed and variable integer encoding. In Bond, the way how integers are encoded is determined by the output format (fast or compact), but in Protocol Buffers, there are integer types that always have fixed size: fixed32 and fixed64.
  • Bond doesn't support union types (oneof in Protocol Buffers)

I did some tests, and it appears that size of simple messages in Bond and ProtoBuf binary formats are about the same. I compared serialization and deserialization time using Bond and C# ProtoBuf library: in my case Bond performed a bit better, you can find my source code on GitHub

To sum up, I think it's better to use Bond when you work with some complex types of data or when you need to represent the same data in different formats: e.g. store as binaries, but expose as JSON etc.

like image 121
takemyoxygen Avatar answered Oct 20 '22 10:10

takemyoxygen