英文: Grpc Golang using UnimplementedServer with other embedded interfaces 问题 我最近更新了最新的protoc和带有现有prot...
如何根据字符串表示获取 Protobuf 枚举值?
英文: How to get a Protobuf enum value from its string representation? 问题 你可以使用Parse方法来从字符串中获取Protobuf...
在不同主机上代理GRPC请求
英文: Proxying GRPC requests on different hosts 问题 我们使用golang实现了GRPC API,并且现在需要一些机制来路由请求到两个不同的主机(prod/...
谷歌的protobuf.Any字段在grpc中始终为nil。
英文: google.protobuf.Any field with grpc is always nil 问题 我正在使用golang的gRPC。我有一个非常简单的proto定义和一个gRPC服务。...
How do I create associations in gRPC proto files?
英文: How do I create associations in gRPC proto files? 问题 我可能走错了方向,但我想要定义两个或多个结构体(消息)之间的关系。 以StackOve...
Do we need to use different grpc connections for different streams for same client (specific to golang)?
英文: Do we need to use different grpc connections for different streams for same client (specific to ...
优雅地处理GRPC中IO等待状态的goroutine的方法
英文: Elegant way to handle goroutine in IO wait state in GRPC 问题 我们的服务器(grpc-gateway + grpc)在K8S上运行,使...
go-grpc导入“google/protobuf/struct.proto”未找到或存在错误。
英文: go-grpc Import "google/protobuf/struct.proto" was not found or had errors 问题 我正在使用以下命令...
如何调试 gRPC-Go 服务?
英文: How do I debug gRPC-Go services? 问题 使用gRPC-Go无疑是构建弹性、高性能和可扩展分布式系统的好方法。我不太明白的是如何实际调试使用它编写的服务。此外,H...
7