英文: Is there a way to construct a grpc server on a connected socket net.conn? 问题 在Go语言中的典型用法是: serve...
如何正确地对MongoDB的CRUD结果进行单元测试
英文: How to properly unit test mongoDB CRUD result 问题 我的应用程序主要使用mongo-go-drive包对MongoDB进行CRUD操作。这个函数是...
无法导入 google.golang.org/grpc(找不到包 “google.golang.org/grpc”)
英文: could not import google.golang.org/grpc (cannot find package "google.golang.org/grpc" ...
grpc.WithInsecure已被弃用:请改用insecure.NewCredentials()。
英文: grpc.WithInsecure is deprecated: use insecure.NewCredentials() instead 问题 嘿,我正在尝试使用Go和Grpc创建一个小型...
将Go的gRPC调用转换为Node.js
英文: Converting Go gRPC call to Node.js 问题 有一个函数使用gRPC调用从gRPC节点获取特定数据。 func GetVotesByAddr(r *http.Re...
gRPC生成的文件没有JSON定义。
英文: gRPC generated file doesn't have json definition 问题 我正在尝试从proto文件生成Go文件,但方法的输入定义中没有json定义。我应...
正在生成服务,但没有客户端协议。
英文: Service being generated but not client protoc 问题 我正在使用protoc尝试为我的gRPC服务生成客户端/服务器。 我在我的make文件中有以下...
Golang Protoc 消息变量接口类型
英文: Golang Protoc Message Variable Interface Type 问题 我的服务端点返回的响应如下: type Response struct { Value int...
Golang Protoc编译器命令的相对路径问题
英文: Golang Protoc Compiler Command relative_path problem 问题 我尝试在Golang中学习gRPC。我编写了一个调用service.proto的...
grpc测试代码退出1,显示’rpc错误:代码=未实现,描述=方法Hello未实现’。
英文: grpc testing code exit 1 with 'rpc error: code = Unimplemented desc = method Hello not imple...
27