代码 https://github.com/fengchunjian/goexamples/tree/master/struct_embeded_interface 执行 g...
Go语言并发模型:使用 contexthttps://segmentfault.com/a/1190000006744213 golang服务器开发利器 context用法详...
证书制作 openssl genrsa -out server.key 2048openssl req -new -x509 -sha256 -key server.key ...
gRPC介绍 gRPC 是一个高性能、开源、通用的RPC框架,由Google推出,基于HTTP/2协议标准设计开发,默认采用Protocol Buffers数据序列化协议,支...
TLS 安全传输层协议(TLS)用于在两个通信应用程序之间提供保密性和数据完整性?;チ耐ㄐ虐踩⒃赟SL/TLS协议之上。1994年,NetScape公司设计了SSL...
代码 https://github.com/fengchunjian/goexamples/tree/master/net 编译运行 参考文档 https://github....
参考文档 fabirc1.0商业正式版本源码解析5——kvledger初始化http://blog.csdn.net/u011386109/article/details/7...
LevelDB入门 LevelDB是Google开源的持久化KV单机数据库,具有很高的随机写,顺序读/写性能,但是随机读的性能很一般也就是说,LevelDB很适合应用在查询较...
知识 interface{} 可以代表任意类型interface{} 就是一个空接口,所有类型都实现了这个接口,所以它可以代表所有类型 代码 https://github.c...
代码 https://github.com/fengchunjian/goexamples/viper 编译 go get github.com/spf13/vipergo ...
代码 https://github.com/fengchunjian/goexamples/cobra 编译 go build -o command 运行 参考文档 go插件...