在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Writing microservices with Go Micro Go Micro 定义:
Go Micro 提供的接口:
Writing a service1. Initialisationmicro.Flags 2. Defining the API使用protobuf定义服务的接口。这种方式规范了api,并使用服务端与客户端接口保持一致。 greeter.proto
上面示例proto 定义了一个服务的接口 handle Greeter,其有方法Hello,参数是 HelloRequest,返回HelloResponse Generate the API interfaceuse protoc and protoc-gen-go Implement the handler在具体的service中,需要实现 proto 中的服务接口 Running the serviceWriting a Client
|
请发表评论