Contents
- interfaces
- types-and-type-assertions
- goroutines
- channels
- buffer
- select
- scheduler
- go-modules
- working-with-json
- context
- mutex
- generics
- pointers
Roadmap info from roadmap website
Compilling Optimizations
Basic optimizations: go build -a -gcflags=all="-l -B" -ldflags="-w -s" -o myapp main.go
Other Optimizations: RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -gcflags=all="-l -B" -ldflags="-w -s" -v -o /usr/local/bin/app ./...