tags:
- ready
- online
- reviewed
- summary
- informatic
- data-structure
- data-representation
- advanced
- concurrency
- goroutines
- go
- data-transference
advanced
Contents
-
[ [ go-interfaces ] ]
-
[ [ go-types-and-type-assertions ] ]
-
[ [ go-goroutines ] ]
-
[ [ go-channels ] ]
-
[ [ go-buffer ] ]
-
[ [ go-select ] ]
-
[ [ go-scheduler ] ]
-
[ [ go-modules ] ]
-
[ [ go-working-with-json ] ]
-
[ [ go-context ] ]
-
[ [ go-mutex ] ]
-
[ [ go-generics ] ]
-
[ [ go-pointers ] ]
__Roadmap info from [ roadmap website ] (https://roadmap.sh/golang/advanced) __
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 ./...