英文: Can't generate grpc files for go 问题 有一个目录结构如下: ├── cmd │ └── main.go ├── go.mod └── proto └─...
尝试编写共享的protobuf定义。
英文: Trying to write shared protobuf definitions 问题 我正在尝试在共享的Go模块中创建共享的protobuf定义,但是运气不太好。具体来说: 我想在模块...
protoc –go-grpc_out 将生成的代码放在 –go_out 生成的代码之外的视野中。
英文: protoc --go-grpc_out generate code in out of vision of --go_out generated code 问题 在之前的产品中,我使用的是旧...
About the google.golang.org/protobuf why use append not make a had cap slice
英文: About the google.golang.org/protobuf why use append not make a had cap slice 问题 // AppendVarint将...
正确地使用zap日志记录器将protobuf消息作为未转义的JSON进行记录。
英文: Correctly log protobuf messages as unescaped JSON with zap logger 问题 我有一个Go项目,在其中使用Zap结构化日志记录结构的...
谷歌的protobuf.Any字段在grpc中始终为nil。
英文: google.protobuf.Any field with grpc is always nil 问题 我正在使用golang的gRPC。我有一个非常简单的proto定义和一个gRPC服务。...
我应该使用Get方法来获取值,还是直接使用字段?
英文: Should I use Get methods to get values or should I use fields directly? 问题 我第一次使用Go语言的protobuf(和...
Why has methods are not generated using protoc 3.17.* if in protobuf repo they say it should?
英文: Why has methods are not generated using protoc 3.17.* if in protobuf repo they say it should? 问题...
将不同服务中相似的枚举类型进行转换。
英文: Converting between similar enums from different services 问题 我正在实现一个通过 gRPC API 公开枚举的服务。 这个服务还调用了...
How to use a package of generated protobuf inside a go module?
英文: How to use a package of generated protobuf inside a go module? 问题 我在Go模块管理和生成protobuf(使用go1.16和p...
24