Protocol Buffers: Difference between revisions
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
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 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 is a great fit as serialization format for microservices. | Protocol Buffer is a great fit as serialization format for [[Microservices|microservices]]. |
Revision as of 21:17, 4 October 2023
Internal
Overview
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 is a great fit as serialization format for microservices.