protobuf
- protocolbuffers/protobuf
- Protocol Buffers - Google's data interchange format
- 包含实现: C++, Java, Python, Objective-C, C#, Ruby, PHP
- protoc
- 生成工具
- protocolbuffers/txtpbfmt
- 格式化 textpb
- 实现
- Go
- Dart dart-lang/protobuf
- protocolbuffers/upb
- a small protobuf implementation in C
- Runtime for Ruby, PHP, Python
- protobuf-c/protobuf-c
- protobuf-net/protobuf-net
brew install protobuf
Reference
- 使用 protobuf 尽量将 零值 和 空值 平等对待
- proto2 特性 optional, group, required
- ⚠️ 不再推荐使用 group, required
- required & optional - 可以考虑使用 FieldMask
- optional 使用 oneof 实现
- 类似 jsonschema
message User {
extensions 100 to 200;
}