摘要:
package schedule import ( "container/list" "context" "fmt" "sync" ) /**********************************\ Task任务接口 \**********************************/ 阅读全文
摘要:
virtualbox网络介绍 Bridge网络: 在主机创建一个bridge(网桥)供各虚机共用. 虚机直接暴露于主机网络环境可能带来诸多麻烦, 最简单就是网管会盯上你. 一般不建议! NAT网络: 虚机基于NAT(网络地址转换)连接外网环境, 也可以连接其他虚机. 但不能连接主机, 为了主机与虚机 阅读全文
摘要:
原版: [金山文档] Golang讲义 https://kdocs.cn/l/ckLEtJcp4m3B 1.前述 1.1 什么是Golang 来自"官网"的定义: https://golang.google.cn/ Go is an open source programming language 阅读全文
摘要:
问题 金山云对象存储(KS3)的"PUT Object" API老是抛"MissingContentLength"! 原因 go http.NewRequest()接收os.File等非bytes.Buffer, strings.Buffer类型时无法设置ContentLength 注意: req. 阅读全文
摘要:
time.Tick的巨坑 go版本 >go version go version go1.15.4 windows/amd64 api文档 func Tick(d Duration) <-chan Time Tick is a convenience wrapper for NewTicker pr 阅读全文
摘要:
参考资料 grpc name resolver原理及实践: https://mp.weixin.qq.com/s?__biz=MzA4ODg0NDkzOA==&mid=2247487040&idx=1&sn=35e54214535da2f2203de2b7f09010d1&source=41#wec 阅读全文
摘要:
总结protobapi扩展protobuf的设计过程, 有点哭笑不得! 应了一句话: 众里寻她千百度, 蓦然回首, 那人也不在灯火处! 辩证评价protobuf二种扩展机制 protobuf custom options protobuf comment constraints 从protobuf的 阅读全文
摘要:
如果无法查看图片, 请跳转博客正文: https://www.cnblogs.com/zolo/p/14066444.html 前述 本教程只说"实践",不谈"理论". 如果哪位觉得有趣, 可以加本人QQ(1255422783)详细交流! 问题 对于后端开发, 经常"众口难调". 一套业务逻辑却要三 阅读全文
摘要:
仓库 https://github.com/fasgo/protoapi https://github.com/fasgo/protogen https://github.com/fasgo/protoc-gen-go-http 下面设计思路与实现考虑: 误区 restful api VS prot 阅读全文
摘要:
设想 假设某种IDL 可以快速序列化与反序列化,说白了支持binary的序列化方案,也支持json/text的序列化方案. 可以描述数据结构与服务接口,一键生成常用的访问方式(rpc, http, websocket...) 可以被大多数项目接受, 且被验证是成熟可行方案 可以与Go/C/C++/J 阅读全文