| CARVIEW |
Select Language
HTTP/2 200
server: GitHub.com
content-type: text/html; charset=utf-8
last-modified: Fri, 26 Dec 2025 17:21:20 GMT
access-control-allow-origin: *
strict-transport-security: max-age=31556952
etag: W/"694ec410-c31a"
expires: Tue, 30 Dec 2025 00:58:09 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 8094:328FD3:974402:A9D179:69532147
accept-ranges: bytes
age: 0
date: Tue, 30 Dec 2025 03:31:28 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210084-BOM
x-cache: HIT
x-cache-hits: 0
x-timer: S1767065488.311122,VS0,VE201
vary: Accept-Encoding
x-fastly-request-id: 28ade2dbd855318a526b0722a626f2f1772a98f1
content-length: 7700
Protocol Buffers Documentation
Protocol Buffers
Protocol Buffers are language-neutral, platform-neutral extensible mechanisms for serializing structured data.
What Are Protocol Buffers?
Protocol buffers are Google’s language-neutral, platform-neutral, extensible mechanism for serializing structured data – think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages.
Pick Your Favorite Language
Protocol buffers support generated code in C++, C#, Dart, Go, Java, Kotlin, Objective-C, Python, and Ruby. With proto3, you can also work with PHP.
Example Implementation
edition = "2024";
message Person {
string name = 1;
int32 id = 2;
string email = 3;
}
Figure 1. A proto definition.
// Java code
Person john = Person.newBuilder()
.setId(1234)
.setName("John Doe")
.setEmail("jdoe@example.com")
.build();
output = new FileOutputStream(args[0]);
john.writeTo(output);
Figure 2. Using a generated class to persist data.
// C++ code
Person john;
fstream input(argv[1],
ios::in | ios::binary);
john.ParseFromIstream(&input);
id = john.id();
name = john.name();
email = john.email();
Figure 3. Using a generated class to parse persisted data.
How Do I Start?
- Download and install the protocol buffer compiler.
- Read the overview.
- Try the tutorial for your chosen language.