1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 12:40:03 +02:00

docs: Put critical information on Protobuf in Go (#2549)

This commit is contained in:
Ari P Zhorifiandi
2022-10-17 13:16:52 +07:00
committed by GitHub
parent d81aa25710
commit 390733da7f

View File

@@ -1,7 +1,14 @@
# Protocol buffers
Protocol Buffers(Protobuf) is a free, open-source, language-neutral, platform-neutral, extensible data format used to serialize structured data.
Protocol Buffers(Protobuf) is a free, open-source, language-neutral, platform-neutral, extensible data format used to serialize structured data. Its like JSON, except it's smaller and faster, and it generates native language bindings.
Some of the advantages of using protocol buffers include:
- Compact data storage
- Fast parsing
- Availability in many programming languages
- Optimized functionality through automatically-generated classes
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Github' href='https://github.com/protocolbuffers/protobuf/'>Protobuf Github</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://developers.google.com/protocol-buffers/'>Protobuf Doc</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://developers.google.com/protocol-buffers/docs/gotutorial/'>Protobuf with Go</BadgeLink>