英文: GRPC stream close connect 问题 我正在使用golang和grpc编写一个处理数据流的服务器。在接收到请求后,我应该将该流放入一个Chan中,然后一个goroutine...
从父目录导入proto文件无法工作
英文: proto importing from parent directory does not work 问题 无法弄清楚如何在proto中进行导入,非常感谢您的帮助。 文件结构: proto ...
Golang项目Protobuf导入损坏
英文: Golang project Protobuf corrupted imports 问题 我不是一个 Golang 开发者,但是目前我必须修复其中的代码,所以如果我不小心没有理解一些基本的 G...
使用UnimplementedServer和其他嵌入接口的Grpc Golang
英文: Grpc Golang using UnimplementedServer with other embedded interfaces 问题 我最近更新了最新的protoc和带有现有prot...
将字符串表示的二进制转换为浮点数。
英文: Go convert to float from string which represent binary 问题 获取并转换Go gRPC元数据中的值。 在我的日志中,我发现元数据被转换为另...
无法为Go生成gRPC文件。
英文: Can't generate grpc files for go 问题 有一个目录结构如下: ├── cmd │ └── main.go ├── go.mod └── proto └─...
在不同主机上代理GRPC请求
英文: Proxying GRPC requests on different hosts 问题 我们使用golang实现了GRPC API,并且现在需要一些机制来路由请求到两个不同的主机(prod/...
从gRPC服务器拦截器获取流式文件的大小。
英文: Get streamed file size from grpc server interceptor 问题 在这种拦截器中,你可以通过grpc.ServerStream参数(ss)来获取传入...
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将...
在使用 GoLand 编译 gRPC 的 .proto 文件后,出现了导入丢失的问题。
英文: Missing imports after compiling gRPC .proto file for GO using GoLand 问题 我正在尝试解决一本gRPC书中的示例,但我不明白...
27