CARVIEW |
Select Language
HTTP/2 200
server: GitHub.com
content-type: text/html; charset=utf-8
last-modified: Wed, 01 Oct 2025 13:09:51 GMT
access-control-allow-origin: *
strict-transport-security: max-age=31556952
etag: W/"68dd281f-c31a"
expires: Mon, 06 Oct 2025 15:54:12 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: FB76:814F7:580C:6443:68E3E3CB
accept-ranges: bytes
age: 0
date: Mon, 06 Oct 2025 16:05:46 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210077-BOM
x-cache: HIT
x-cache-hits: 0
x-timer: S1759766746.915395,VS0,VE293
vary: Accept-Encoding
x-fastly-request-id: 42c3628cbc631cb6c255661fcb39441eb5860e67
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.