Go Lang
Table of Contents
go module
go mod init
: go.mod 파일을 생성한다.go list -m all
: Build시 사용된 Module들의 Version 확인한다.go list -u -m all
: Module이 Patch 가능한지 확인한다.go get -u
: Module을 Patch (Update)한다.go mod tidy
: go.mod에서 불필요한 Module은 제거하고, 필요한 Module을 추가한다.go mod vendor
: go.mod의 Module을 이용하여 vendor Directory를 생성한다.go clean –modcache
: Module Cache ($GOPATH/pkg/mod)를 삭제한다.
DataType
- Format
fmt.Printf("%.2f", float64(1.564)) // 1.56
fmt.Printf("%.2f", float64(1.565)) // 1.57
fmt.Printf("%d", int64(156)) // 156
fmt.Printf("%d%%", int64(99)) // 99%
Libraries
go-humanize (format)
fmt.Printf("%s", humanize.Bytes(82854982)) // 83 MB
fmt.Printf("%s", humanize.Time(someTimeInstance)) // 7 hours ago
fmt.Printf("%s", humanize.Ordinal(2)) // 2nd
fmt.Printf("%s", humanize.Ordinal(193)) // 193rd
fmt.Printf("$%s", humanize.Comma(6582491)) // $6,582,491
fmt.Printf("%f", 2.24) // 2.240000
fmt.Printf("%s", humanize.Ftoa(2.24)) // 2.24
fmt.Printf("%f", 2.0) // 2.000000
fmt.Printf("%s", humanize.Ftoa(2.0)) // 2
Kubernetes go-client
- 참고 : Installing client-go
▒ go mod init
▒ go get k8s.io/client-go@master
posted at 2022/03/18 09:42