ブックマーク / protobuf.dev (6)

  • Encoding

    Explains how Protocol Buffers encodes data to files or to the wire. This document describes the protocol buffer wire format, which defines the details of how your message is sent on the wire and how much space it consumes on disk. You probably don’t need to understand this to use protocol buffers in your application, but it’s useful information for doing optimizations. If you already know the conc

    issyurn
    issyurn 2022/08/18
    なるほどなー
  • Tutorials

    issyurn
    issyurn 2019/11/12
  • Language Guide (proto 2)

    Covers how to use the proto2 revision of Protocol Buffers language in your project. This guide describes how to use the protocol buffer language to structure your protocol buffer data, including .proto file syntax and how to generate data access classes from your .proto files. It covers the proto2 revision of the protocol buffers language. For information on editions syntax, see the Protobuf Editi

    issyurn
    issyurn 2019/06/04
  • 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 sourc

    issyurn
    issyurn 2018/05/18
  • Protocol Buffer Basics: Go

    A basic Go programmers introduction to working with protocol buffers. This tutorial provides a basic Go programmer’s introduction to working with protocol buffers, using the proto3 version of the protocol buffers language. By walking through creating a simple example application, it shows you how to Define message formats in a .proto file.Use the protocol buffer compiler.Use the Go protocol buffer

    issyurn
    issyurn 2017/10/19
  • Overview

    Protocol Buffers are a language-neutral, platform-neutral extensible mechanism for serializing structured data. It’s like JSON, except it’s smaller and faster, and it generates native language bindings. 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

    issyurn
    issyurn 2017/10/19
  • 1