Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 899 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 899 Bytes

读我

大纲

  1. GRPC 和 Protobuf
  2. 创建.proto文件(sqrt函数)
  3. 根据.proto文件生成python代码(服务端/客户端)
  4. 写服务端代码
  5. 写客户端代码
  6. 普通错误处理
  7. 根据.proto文件生成golang代码
  8. 写golang服务端
  9. 写golang客户端
  10. proto中增加客户端的streaming(stat统计函数)
  11. stat函数的服务端和客户端实现(python)
  12. stat函数的服务端和客户端的实现(golang)
  13. 服务端streaming样例(factor分解质因数函数)
  14. Q&A

参考资料

  1. GRPC官方文档
  2. GRPC Examples
  3. GRPC Examples Golang
  4. GRPC Errors
  5. GRPC安全统计加密等