1. Go切片

    切片

    2020/02/22 Go 知识点

  2. Go函数

    函数 声明函数 func 函数名(参数列表)(返回参数){ 函数体 }

    2020/02/22 Go 知识点

  3. Kubernetes 架构【draft】

    Master Master是Kubernetes Cluster的大脑,运行着的Daemon服务包括kube-apiserver、kube-scheduler、kube-controller-manager、etcd和Pod网络(例如flannel)

    2020/02/18 k8s

  4. Kubernetes Demo

    学习研究,使用minikube模拟。做下记录,方便回顾,加深理解。

    2020/02/18 k8s

  5. dockerfile常用指令

    指定容器启动时运行的命令 CMD 为容器提供默认的执行命令

    2020/02/16 docker composer

  6. Goroutine并发控制

    创建协程 jobCount := 10 // sync.WaitGroup 监控所有协程的状态,从而保证主协程结束时所有的子协程已经退出 group := sync.WaitGroup{} for i:=0;i < jobCount;i++ { group.Add(1) go func(i int) { fmt.Println("task ",i) time.Sleep(time.Second) // 刻意睡 1 秒钟,模拟耗时 group.Done() }(i) fmt.Printf("index: %d,goroutine Num: %d \n", i, runtime.NumGoroutine()) } group.Wait()

    2020/02/08 Go 知识点

  7. gomail【draft】

    发送附件及内容 ```go attach := “job/log/test.csv” f, err := os.Create(attach) // 创建文件,已存在将会清空文件 if err != nil { panic(err) } defer f.Close()

    2020/02/08 Go 知识点

  8. Go 实现PDO【draft】

    https://github.com/go-gorm/gen

    2020/01/19 Go 知识点