英文: Getting "protoc": executable file not found in $PATH when running "go generate&qu...
动态创建协议缓冲区对象
英文: Dynamically create protocol buffer object 问题 我正在使用一组协议缓冲区(protocol buffers)进行工作,我对如何实例化它们并在运行时计算...
如何在Golang中将.proto文件解析为FileDescriptor?
英文: how to parse .proto file into FileDescriptor in golang? 问题 我的目标是动态地从.proto文件中获取FileDescriptor,我应...
How am I supposed to use protoc-gen-go-grpc?
英文: How am I supposed to use protoc-gen-go-grpc? 问题 我正在尝试为一些协议缓冲区生成Go代码以及一个gRPC服务。 过去我使用过 https://gi...
如何使用 protoreflect 在 Go 的 protobuf 切片字段中添加一个 nil 条目?
英文: How to add a nil entry in Go protobuf slice field with protoreflect? 问题 我的生成的Protobuf Go结构如下所示: ...
在实现Protobuf时遇到了未知的修订错误。(GO)
英文: Unknown revision error when implementing Protobuf. (GO) 问题 我现在正在使用GitHub存储库编写GO代码,并且需要拉取一个包。 go ...
如何在golang中安全地回收protobuf对象
英文: How to safely recycle protobuf objects in golang 问题 我想要重复使用protobuf的消息对象来减少运行时的垃圾回收消耗,但我不确定是否安全。...
gRPC的Go语言常量的proto是什么?
英文: What is the grpc proto for golang const? 问题 如果我有以下的golang代码: type Animal string const ( Cat Anim...
protoc-gen-go: 无法确定 “simple.proto” 的 Go 导入路径。
英文: protoc-gen-go: unable to determine Go import path for "simple.proto" 问题 我有一个包含以下内容的简单p...
Golang Protoc 消息变量接口类型
英文: Golang Protoc Message Variable Interface Type 问题 我的服务端点返回的响应如下: type Response struct { Value int...
24