英文: How to set Strict-Transport-Header for GRPC services 问题 我正在检查Strict Transport Header,它是用于为UI提供服务...
单体仓库(Monorepo):如何从另一个项目中使用一个包?
英文: Monorepo: How to consume a package from another project? 问题 我正在尝试在Go中创建我的第一个monorepo。项目结构如下所示: 如...
protoc –go_opt=paths=source_relative vs –go-grpc_opt=paths=source_relative
英文: protoc --go_opt=paths=source_relative vs --go-grpc_opt=paths=source_relative 问题 我正在努力弄清楚protoc命令...
How am I supposed to use protoc-gen-go-grpc?
英文: How am I supposed to use protoc-gen-go-grpc? 问题 我正在尝试为一些协议缓冲区生成Go代码以及一个gRPC服务。 过去我使用过 https://gi...
有没有一种方法可以在连接的套接字net.conn上构建一个gRPC服务器?
英文: Is there a way to construct a grpc server on a connected socket net.conn? 问题 在Go语言中的典型用法是: serve...
grpc.WithInsecure已被弃用:请改用insecure.NewCredentials()。
英文: grpc.WithInsecure is deprecated: use insecure.NewCredentials() instead 问题 嘿,我正在尝试使用Go和Grpc创建一个小型...
grpc测试代码退出1,显示’rpc错误:代码=未实现,描述=方法Hello未实现’。
英文: grpc testing code exit 1 with 'rpc error: code = Unimplemented desc = method Hello not imple...
在GRPC服务器中使用Unix套接字访问底层连接。
英文: Accessing underlying connection in GRPC server with unix socket 问题 想知道是否有一种方法可以访问底层的net.Conn,使用S...
gRPC在Golang中的故障检测
英文: gRPC failure detection in Golang 问题 我正在尝试使用https://pkg.go.dev/google.golang.org/grpc#ClientConn....
grpc.MaxCallSendMsgSize可以指定的最大字节数是多少?
英文: What is the maximum number of bytes that can be specified in grpc.MaxCallSendMsgSize? 问题 问题: 在使用...
7