Protocol Buffers: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(One intermediate revision by the same user not shown)
Line 6: Line 6:
* [[Serialization]]
* [[Serialization]]
* [[Grpc|gRPC]]
* [[Grpc|gRPC]]
 
=Subjects=
=Overview=
* [[Protocol_Buffer_Concepts#|Concepts]]
Protocol buffers is a format used for data serialization, publicly introduced by Google in 2008. The benefits of using Protocol Buffers include the simplicity of the definition language, a small data output size, high performance of serialization and deserialization and the ability to define derives in addition to data structures and compile client and server code in multiple languages.
 
Protocol Buffer can be used as serialization format for [[Microservices|microservices]]. Additionally, the Protocol Buffer schema languages allows declaring service APIs. Code for those services can then be generated automatically.
 
[[Grpc|gRPC]] uses Protocol Buffers as serialization format.


=Installation=
=Installation=

Revision as of 21:09, 2 May 2024

External

Internal

Subjects

Installation

brew install protobuf