英文: golang + grpc: register a service on GrpcServer 问题 我正在使用这个示例来构建一个Go语言的gRPC服务器。 但是似乎我漏掉了一些东西 - 在示...
JSON对我来说比Protobuf/gRPC更快,服务器使用Go,客户端使用PHP。
英文: JSON is way faster than Protobuf/gRPC for me, with Go as the server and PHP as the client 问题 也许我...
proto3 -> go with custom extensions resulting in imports to package ("google/protobuf") in go code
英文: proto3 -> go with custom extensions resulting in imports to package ("google/protobuf&qu...
在golang中,有没有一种自定义Marshaling Protobuf的方法?
英文: Is there a way to custom Marshaling Protobuf in golang? 问题 在golang中,是否有一种像encoding/json提供的方式来自定义...
protobuf解包未知消息
英文: protobuf unmarshal unknown message 问题 我有一个接收protobuf消息的监听器。然而,它不知道什么时候会收到哪种类型的消息。所以我尝试将其解组为inter...
在使用golang/protobuf时,在数据存储中出现了构建错误。
英文: Build errors in datastore while using golang/protobuf 问题 我有一个应用程序,使用了bigquery和cloud datastore的AP...
How to serialize a Go map into a protobuff
英文: How to serialize a Go map into a protobuff 问题 我正在遵循这个教程,并到达了关于将Go结构体序列化/编组为协议缓冲区的部分。我的结构体中有一个映射(...
指定 Protobuf 扩展的 JSON 名称
英文: Specifying the JSON name for protobuf extension 问题 我已经将一个扩展消息添加到消息中,并需要将其转换为JSON。然而,扩展消息的字段名为[me...
proto.MessageName返回空字符串
英文: proto.MessageName returns empty string 问题 我在Go语言中遇到了一个关于Protobuf的问题。 给定以下代码片段: if proto.MessageN...
如何保存 GRPC 流以便重复使用
英文: How to save an GRPC stream for reusement 问题 我有一个提供函数并返回流的GRPC服务器。 我想将流保存到map[string]grpc.Stream中...
24