英文: Getting "rpc error: code = Unavailable desc = error reading from server: EOF" when try...
尝试从不同目录导入proto文件时出现了找不到protoc文件的错误。
英文: Protoc file not found error when trying to import proto file from different directory 问题 无法弄清楚为什...
如何从嵌套数组的 golang grpc 服务中根据条件获取数据
英文: How to get data based on condition from nested array golang grpc service 问题 我正在尝试根据下一个数组条件获取特定数据...
为什么在gRPC中使用“loadBalancingPolicy”时必须使用“healthCheckConfig”?
英文: why the "loadBalancingPolicy“ must be used when "healthCheckConfig" in grpc 问题 代码...
如何在Golang中同时将响应流式传输回客户端?
英文: How to concurrently stream response back to the client in golang? 问题 我在服务器端的一个方法中有以下代码,该方法将流式响应发...
如何将时间戳 Protobuff 转回我的时区,因为 GitHub 版本的时间戳已被弃用?
英文: How can I make Timestamp Protobuff back to my timezone since the github version of timestamp is ...
如何使用gRPC状态码并根据客户端构建相应的响应?
英文: How to use grpc status code and build response accordingly to the client? 问题 我正在翻译你的内容,请稍等片刻。 我想...
GRPC服务在GoLang中使用通用proto请求数据。
英文: GRPC Service with Generic proto request data in GoLang 问题 我有3个proto文件,如下所示: 1 - record.proto mes...
如何使用Go语言模拟一个带有方法的虚拟gRPC服务
英文: How to mock a dummy grpc service with methods in Go 问题 我需要为一个函数编写单元测试,该函数在其源代码中调用了一个不同的 gRPC 服务的...
实施幂等键
英文: Implementing idempotency keys 问题 我正在尝试让我的两个 Golang GRPC 端点支持幂等键。我的服务将在自己的集合中将键存储到Mongo中(因为我已经在使用...
27